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