comparison dw.h @ 558:05060ce4d6ae

Fixes for the new shared memory and named event code.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Sat, 17 Apr 2004 06:04:40 +0000
parents 1a210e2f214b
children 7ca86c417a58
comparison
equal deleted inserted replaced
557:1a210e2f214b 558:05060ce4d6ae
737 int alive; 737 int alive;
738 int posted; 738 int posted;
739 } *HEV; 739 } *HEV;
740 typedef pthread_t DWTID; 740 typedef pthread_t DWTID;
741 typedef void * HMOD; 741 typedef void * HMOD;
742 typedef struct _dw_unix_shm { 742 struct _dw_unix_shm {
743 int fd; 743 int fd;
744 char *path; 744 char *path;
745 int sid; 745 int sid;
746 int size; 746 int size;
747 } HSHM; 747 };
748 748
749 typedef struct _hpixmap { 749 typedef struct _hpixmap {
750 unsigned long width, height; 750 unsigned long width, height;
751 GdkPixmap *pixmap; 751 GdkPixmap *pixmap;
752 HWND handle; 752 HWND handle;
753 } *HPIXMAP; 753 } *HPIXMAP;
754 754
755 typedef GtkWidget *HMENUI; 755 typedef GtkWidget *HMENUI;
756 typedef void *HTREEITEM; 756 typedef void *HTREEITEM;
757 typedef void *HSHM;
757 758
758 typedef struct _resource_struct { 759 typedef struct _resource_struct {
759 long resource_max, *resource_id; 760 long resource_max, *resource_id;
760 char **resource_data; 761 char **resource_data;
761 } DWResources; 762 } DWResources;