[FREELDR] Merge boot-drive and partition functionalities together (#6760)
[reactos.git] / base / applications / fontview / fontview.h
1 #pragma once
2
3 #define MAX_LOADSTRING 50
4 #define MAX_BUTTONNAME 30
5
6 #define HEADER_SIZE 37
7 #define BUTTON_POS_X 6
8 #define BUTTON_POS_Y 8
9 #define BUTTON_WIDTH 80
10 #define BUTTON_HEIGHT 21
11 #define BUTTON_PADDING 8
12
13 #define IDC_INSTALL 1001
14 #define IDC_PRINT 1002
15 #define IDC_DISPLAY 1003
16 #define IDC_PREV 1004
17 #define IDC_NEXT 1005
18
19 LRESULT CALLBACK MainWndProc(HWND, UINT, WPARAM, LPARAM);
20
21 BOOL LoadFont(LPWSTR lpCmdLine);
22
23 extern INT g_FontIndex;