comparison dw.h @ 1269:9e477efbacca

Added DW_DRAW_DEFAULT, DW_DRAW_FILL and DW_DRAW_FULL drawing flags. Adde some more arc segments and full circle commands to test program.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Sun, 30 Oct 2011 00:40:22 +0000
parents 61d0c5f84644
children b99b0b2c2826
comparison
equal deleted inserted replaced
1268:148daf522080 1269:9e477efbacca
1409 #define DW_HTML_GOHOME 2 1409 #define DW_HTML_GOHOME 2
1410 #define DW_HTML_SEARCH 3 1410 #define DW_HTML_SEARCH 3
1411 #define DW_HTML_RELOAD 4 1411 #define DW_HTML_RELOAD 4
1412 #define DW_HTML_STOP 5 1412 #define DW_HTML_STOP 5
1413 #define DW_HTML_PRINT 6 1413 #define DW_HTML_PRINT 6
1414
1415 /* Drawing flags... used for Arc currently */
1416 #define DW_DRAW_DEFAULT 0
1417 #define DW_DRAW_FILL 1
1418 #define DW_DRAW_FULL (1 << 1)
1419
1414 1420
1415 /* Macro for casting resource IDs to HICN */ 1421 /* Macro for casting resource IDs to HICN */
1416 #define DW_RESOURCE(a) (a < 65536 ? (HICN)a : (HICN)0) 1422 #define DW_RESOURCE(a) (a < 65536 ? (HICN)a : (HICN)0)
1417 1423
1418 #include <limits.h> 1424 #include <limits.h>