# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1612385751 0 # Node ID 0c88059df8e9525fbe4dfe79929437ca1c4c8252 # Parent b045bb67922dc922254048127c6f9139da7c820b 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. diff -r b045bb67922d -r 0c88059df8e9 dw.h --- a/dw.h Wed Feb 03 08:35:06 2021 +0000 +++ b/dw.h Wed Feb 03 20:55:51 2021 +0000 @@ -1603,6 +1603,12 @@ /* Use the dbsoft.org application domain by default if not specified */ #define DW_APP_DOMAIN_DEFAULT "org.dbsoft.dwindows" +/* Forwarder macros to the future names of these functions */ +#define dw_pointer_get_pos(a, b) dw_pointer_query_pos(a, b) +#define dw_environment_get(a) dw_environment_query(a) +#define dw_container_get_start(a, b) dw_container_query_start(a, b) +#define dw_container_get_next(a, b) dw_container_query_next(a, b) + /* Public function prototypes */ void API dw_box_pack_start(HWND box, HWND item, int width, int height, int hsize, int vsize, int pad); void API dw_box_pack_end(HWND box, HWND item, int width, int height, int hsize, int vsize, int pad);