reactos/base/applications/fontview/display.h
2013-06-16 22:01:41 +00:00

24 lines
504 B
C

#pragma once
#include <stdio.h>
#include <stdlib.h>
#include <windef.h>
#include <winbase.h>
#include <winuser.h>
#include <wingdi.h>
#include <commdlg.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);
LRESULT Display_OnPrint(HWND hwnd);