mirror of
https://github.com/reactos/reactos.git
synced 2024-11-09 08:08:38 +00:00
527f2f9057
* Create a branch for some evul shell experiments. svn path=/branches/shell-experiments/; revision=61927
16 lines
361 B
C
16 lines
361 B
C
#pragma once
|
|
|
|
/* 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);
|
|
LRESULT Display_OnPrint(HWND hwnd);
|