[SNDVOL32] Add the small line dialog
[reactos.git] / base / applications / charmap / precomp.h
index 8ed87cd..0ade7aa 100644 (file)
@@ -5,19 +5,15 @@
 #include <windef.h>
 #include <winbase.h>
 #include <winuser.h>
-#include <winreg.h>
 #include <wingdi.h>
-#include <windowsx.h>
-#include <tchar.h>
-//#include <stdio.h>
-#include <stdlib.h>
-#include <commctrl.h>
-#include <richedit.h>
+
 
 #include "resource.h"
 
 #define SIZEOF(_v)  (sizeof(_v) / sizeof(*_v))
 
+#define MAX_GLYPHS  65536
+
 #define XCELLS 20
 #define YCELLS 10
 #define XLARGE 45
@@ -51,6 +47,11 @@ typedef struct _MAP
     HFONT hFont;
     LOGFONTW CurrentFont;
     INT iYStart;
+    INT NumRows;
+
+    USHORT ValidGlyphs[MAX_GLYPHS];
+    USHORT NumValidGlyphs;
+
 } MAP, *PMAP;
 
 typedef struct {
@@ -73,6 +74,7 @@ BOOL RegisterMapClasses(HINSTANCE hInstance);
 VOID UnregisterMapClasses(HINSTANCE hInstance);
 
 /* charmap.c */
+VOID UpdateStatusBar(WCHAR wch);
 extern VOID ChangeMapFont(HWND hDlg);
 
 /* settings.c */