comparison dw.h @ 2283:0c88059df8e9

Add forwarder macros to the new names of the "query" functions. "Query" is nomenclature from the OS/2 roots of DW.. however GTK used the shorter and more concise "get" nomenclature. At some point in the future, probably the next major version the exported functions will switch to the "get" versions and the "query" versions will become deprecated macros.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Wed, 03 Feb 2021 20:55:51 +0000
parents 1c52cd5a817f
children 3361ce6070ce
comparison
equal deleted inserted replaced
2282:b045bb67922d 2283:0c88059df8e9
1600 #define UINT_TYPEDEFED 1 1600 #define UINT_TYPEDEFED 1
1601 #define INT_TYPEDEFED 1 1601 #define INT_TYPEDEFED 1
1602 1602
1603 /* Use the dbsoft.org application domain by default if not specified */ 1603 /* Use the dbsoft.org application domain by default if not specified */
1604 #define DW_APP_DOMAIN_DEFAULT "org.dbsoft.dwindows" 1604 #define DW_APP_DOMAIN_DEFAULT "org.dbsoft.dwindows"
1605
1606 /* Forwarder macros to the future names of these functions */
1607 #define dw_pointer_get_pos(a, b) dw_pointer_query_pos(a, b)
1608 #define dw_environment_get(a) dw_environment_query(a)
1609 #define dw_container_get_start(a, b) dw_container_query_start(a, b)
1610 #define dw_container_get_next(a, b) dw_container_query_next(a, b)
1605 1611
1606 /* Public function prototypes */ 1612 /* Public function prototypes */
1607 void API dw_box_pack_start(HWND box, HWND item, int width, int height, int hsize, int vsize, int pad); 1613 void API dw_box_pack_start(HWND box, HWND item, int width, int height, int hsize, int vsize, int pad);
1608 void API dw_box_pack_end(HWND box, HWND item, int width, int height, int hsize, int vsize, int pad); 1614 void API dw_box_pack_end(HWND box, HWND item, int width, int height, int hsize, int vsize, int pad);
1609 void API dw_box_pack_at_index(HWND box, HWND item, int index, int width, int height, int hsize, int vsize, int pad); 1615 void API dw_box_pack_at_index(HWND box, HWND item, int index, int width, int height, int hsize, int vsize, int pad);