Added an unknown VxD error code.
[wine] / programs / view / globals.h
1
2 /* for SMALL_RECT */
3 #include "wincon.h" 
4 #include "resource.h" 
5
6 /*  Add global function prototypes here */
7
8 BOOL InitApplication(HINSTANCE);
9 BOOL InitInstance(HINSTANCE, int);
10 BOOL CenterWindow(HWND, HWND);
11
12 /* Add new callback function prototypes here  */
13
14 LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);
15
16 /* Global variable declarations */
17
18 extern HINSTANCE hInst;          /* The current instance handle */
19 extern char      szAppName[];    /* The name of this application */
20 extern char      szTitle[];      /* The title bar text */
21
22
23 #include "pshpack1.h"
24 typedef struct
25 {
26         DWORD           key;
27         WORD            hmf;
28         SMALL_RECT      bbox;
29         WORD            inch;
30         DWORD           reserved;
31         WORD            checksum;
32 } APMFILEHEADER;
33
34 #define APMHEADER_KEY   0x9AC6CDD7l
35
36 #include "poppack.h"