diff 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
line wrap: on
line diff
--- a/dw.h	Tue Oct 25 12:33:09 2011 +0000
+++ b/dw.h	Sun Oct 30 00:40:22 2011 +0000
@@ -1412,6 +1412,12 @@
 #define DW_HTML_STOP       5
 #define DW_HTML_PRINT      6
 
+/* Drawing flags... used for Arc currently */
+#define DW_DRAW_DEFAULT    0
+#define DW_DRAW_FILL       1
+#define DW_DRAW_FULL       (1 << 1)
+
+
 /* Macro for casting resource IDs to HICN */
 #define DW_RESOURCE(a) (a < 65536 ? (HICN)a : (HICN)0)