Fix build
[reactos.git] / rosapps / dflat32 / menu.h
index d19f1f4..cb269c4 100644 (file)
@@ -10,7 +10,7 @@
 /* ----------- popdown menu selection structure
        one for each selection on a popdown menu --------- */
 struct DfPopDown {
-    unsigned char *SelectionTitle; /* title of the selection */
+    char *SelectionTitle;  /* title of the selection */
     int ActionId;          /* the command executed        */
     int Accelerator;       /* the accelerator key         */
     int Attrib;  /* DF_INACTIVE | DF_CHECKED | DF_TOGGLE | DF_CASCADED*/
@@ -49,7 +49,7 @@ typedef struct DfMenuBar {
 #define DF_INACTIVE    1
 #define DF_CHECKED     2
 #define DF_TOGGLE      4
-#define DF_CASCADED    8    
+#define DF_CASCADED    8
 
 /* --------- the standard menus ---------- */
 extern DF_MBAR DfMainMenu;