comparison dw.h @ 494:edcf9ec12f8c

Fixed a bug in the dialog system on Unix where, gtk_main() could exit when dw_dialog_wait() and dw_dialog_dismiss() were called from different threads.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Tue, 02 Dec 2003 18:40:27 +0000
parents 9354c460d76b
children f3ed8dda02f8
comparison
equal deleted inserted replaced
493:84e471a4ec7e 494:edcf9ec12f8c
795 } DWExpose; 795 } DWExpose;
796 796
797 typedef struct _dwdialog { 797 typedef struct _dwdialog {
798 HEV eve; 798 HEV eve;
799 int done; 799 int done;
800 int method;
800 void *data, *result; 801 void *data, *result;
801 } DWDialog; 802 } DWDialog;
802 803
803 #define DW_SIGNAL_FUNC(a) ((void *)a) 804 #define DW_SIGNAL_FUNC(a) ((void *)a)
804 805