2014-01-06 20:48:44 +00:00
|
|
|
#pragma once
|
2009-10-12 03:35:35 +00:00
|
|
|
|
|
|
|
#define MAX_LOADSTRING 50
|
|
|
|
#define MAX_BUTTONNAME 30
|
|
|
|
|
|
|
|
#define HEADER_SIZE 37
|
|
|
|
#define BUTTON_POS_X 6
|
|
|
|
#define BUTTON_POS_Y 8
|
2017-04-16 21:30:29 +00:00
|
|
|
#define BUTTON_WIDTH 80
|
2009-10-12 03:35:35 +00:00
|
|
|
#define BUTTON_HEIGHT 21
|
2017-02-08 17:56:22 +00:00
|
|
|
#define BUTTON_PADDING 8
|
2009-10-12 03:35:35 +00:00
|
|
|
|
2012-07-15 14:25:19 +00:00
|
|
|
#define IDC_INSTALL 1001
|
2009-10-12 03:35:35 +00:00
|
|
|
#define IDC_PRINT 1002
|
|
|
|
#define IDC_DISPLAY 1003
|
2017-02-08 17:56:22 +00:00
|
|
|
#define IDC_PREV 1004
|
|
|
|
#define IDC_NEXT 1005
|
2009-10-12 03:35:35 +00:00
|
|
|
|
|
|
|
LRESULT CALLBACK MainWndProc(HWND, UINT, WPARAM, LPARAM);
|
|
|
|
|
|
|
|
BOOL LoadFont(LPWSTR lpCmdLine);
|
2017-02-08 17:56:22 +00:00
|
|
|
|
|
|
|
extern INT g_FontIndex;
|