[KERNEL32]
[reactos.git] / base / applications / fontview / display.h
1 #pragma once
2
3 #include <stdio.h>
4 #include <stdlib.h>
5 #include <windef.h>
6 #include <winbase.h>
7 #include <winuser.h>
8 #include <wingdi.h>
9 #include <commdlg.h>
10
11 /* Messages for the display class */
12 #define FVM_SETTYPEFACE WM_USER
13 #define FVM_SETSTRING (WM_USER + 1)
14
15 /* Size restrictions */
16 #define MAX_STRING 100
17 #define MAX_FORMAT 20
18 #define MAX_SIZES 8
19
20 extern const WCHAR g_szFontDisplayClassName[];
21
22 /* Public function */
23 BOOL Display_InitClass(HINSTANCE hInstance);
24 LRESULT Display_OnPrint(HWND hwnd);