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