diff dw.h @ 325:e5f0613b65cd

Added DW_MENU_SEPARATOR.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Fri, 04 Apr 2003 06:37:07 +0000
parents 83edbd751da9
children e00aff2b899e
line wrap: on
line diff
--- a/dw.h	Fri Apr 04 01:39:33 2003 +0000
+++ b/dw.h	Fri Apr 04 06:37:07 2003 +0000
@@ -722,6 +722,8 @@
 #define DW_BLUE_VALUE(a) ((a & DW_BLUE_MASK) >> 16)
 #define DW_RGB(a, b, c) (0xF0000000 | a | b << 8 | c << 16)
 
+#define DW_MENU_SEPARATOR ""
+
 #if defined(__OS2__) || defined(__EMX__)
 #define DW_OS2_RGB(a) ((DW_RED_VALUE(a) << 16) | (DW_GREEN_VALUE(a) << 8) | DW_BLUE_VALUE(a))
 #endif