comparison dw.h @ 134:caeb52bb5ef4

Pass pointers to argc and argv on Unix.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Mon, 21 Oct 2002 00:40:55 +0000
parents 7d2108cbcd3e
children e0e73b4372a6
comparison
equal deleted inserted replaced
133:85f8ba78736d 134:caeb52bb5ef4
600 600
601 /* Public function prototypes */ 601 /* Public function prototypes */
602 void dw_box_pack_start(HWND box, HWND item, int width, int height, int hsize, int vsize, int pad); 602 void dw_box_pack_start(HWND box, HWND item, int width, int height, int hsize, int vsize, int pad);
603 void dw_box_pack_end(HWND box, HWND item, int width, int height, int hsize, int vsize, int pad); 603 void dw_box_pack_end(HWND box, HWND item, int width, int height, int hsize, int vsize, int pad);
604 #if !defined(__OS2__) && !defined(__WIN32__) && !defined(__EMX__) 604 #if !defined(__OS2__) && !defined(__WIN32__) && !defined(__EMX__)
605 int dw_int_init(DWResources *res, int newthread, int argc, char *argv[]); 605 int dw_int_init(DWResources *res, int newthread, int *argc, char **argv[]);
606 #define dw_init(a, b, c) dw_int_init(&_resources, a, b, c) 606 #define dw_init(a, b, c) dw_int_init(&_resources, a, &b, &c)
607 #else 607 #else
608 int dw_init(int newthread, int argc, char *argv[]); 608 int dw_init(int newthread, int argc, char *argv[]);
609 #endif 609 #endif
610 void dw_main(HAB currenthab, void *filterfunc); 610 void dw_main(HAB currenthab, void *filterfunc);
611 void dw_main_sleep(int seconds); 611 void dw_main_sleep(int seconds);