comparison dw.h @ 1769:d81bebc5c8cc

Mark and I decided to change dw_box_remove*() to dw_box_unpack*() for consistency. This commit should change all exports and references appropriately.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Fri, 06 Jul 2012 10:51:28 +0000
parents 227e13044ce3
children 9de6d1cc8fb8
comparison
equal deleted inserted replaced
1768:227e13044ce3 1769:d81bebc5c8cc
1462 1462
1463 /* Public function prototypes */ 1463 /* Public function prototypes */
1464 void API dw_box_pack_start(HWND box, HWND item, int width, int height, int hsize, int vsize, int pad); 1464 void API dw_box_pack_start(HWND box, HWND item, int width, int height, int hsize, int vsize, int pad);
1465 void API dw_box_pack_end(HWND box, HWND item, int width, int height, int hsize, int vsize, int pad); 1465 void API dw_box_pack_end(HWND box, HWND item, int width, int height, int hsize, int vsize, int pad);
1466 void API dw_box_pack_at_index(HWND box, HWND item, int index, int width, int height, int hsize, int vsize, int pad); 1466 void API dw_box_pack_at_index(HWND box, HWND item, int index, int width, int height, int hsize, int vsize, int pad);
1467 HWND API dw_box_remove_at_index(HWND box, int index); 1467 HWND API dw_box_unpack_at_index(HWND box, int index);
1468 int API dw_box_remove(HWND handle); 1468 int API dw_box_unpack(HWND handle);
1469 #if !defined(__OS2__) && !defined(__WIN32__) && !defined(__EMX__) && !defined(__MAC__) 1469 #if !defined(__OS2__) && !defined(__WIN32__) && !defined(__EMX__) && !defined(__MAC__)
1470 int API dw_int_init(DWResources *res, int newthread, int *argc, char **argv[]); 1470 int API dw_int_init(DWResources *res, int newthread, int *argc, char **argv[]);
1471 #define dw_init(a, b, c) dw_int_init(&_resources, a, &b, &c) 1471 #define dw_init(a, b, c) dw_int_init(&_resources, a, &b, &c)
1472 #else 1472 #else
1473 int API dw_init(int newthread, int argc, char *argv[]); 1473 int API dw_init(int newthread, int argc, char *argv[]);