mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 15:10:53 +00:00
bb519801e2
- Include only the necessary headers in csrss/csrsrv/basesrv/consrv/winsrv. svn path=/branches/ros-csrss/; revision=58249
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);
|