mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 21:34:00 +00:00
2012315e5a
svn path=/trunk/; revision=34303
18 lines
390 B
C
18 lines
390 B
C
#ifndef _DISPLAY_H
|
|
#define _DISPLAY_H
|
|
|
|
/* Messages for the display class */
|
|
#define FVM_SETTYPEFACE WM_USER
|
|
#define FVM_SETSTRING (WM_USER + 1)
|
|
|
|
/* Size restrictions */
|
|
#define MAX_STRING 100
|
|
#define MAX_FORMAT 20
|
|
#define MAX_SIZES 8
|
|
|
|
extern const WCHAR g_szFontDisplayClassName[];
|
|
|
|
/* Public function */
|
|
BOOL Display_InitClass(HINSTANCE hInstance);
|
|
|
|
#endif // _DISPLAY_H
|