mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 09:50:02 +00:00
24 lines
504 B
C
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);
|