Hook into the (stubbed) resize code in msdos int10.
[wine/multimedia.git] / programs / view / globals.h
blob5577af6a5dceaa5acb5f533ef1090d3dc8bceeab
2 /* for SMALL_RECT */
3 #include "wincon.h"
5 /* Add global function prototypes here */
7 BOOL InitApplication(HINSTANCE);
8 BOOL InitInstance(HINSTANCE, int);
9 BOOL CenterWindow(HWND, HWND);
11 /* Add new callback function prototypes here */
13 LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);
15 /* Global variable declarations */
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 */
22 #pragma pack(1)
23 typedef struct
25 DWORD key;
26 WORD hmf;
27 SMALL_RECT bbox;
28 WORD inch;
29 DWORD reserved;
30 WORD checksum;
31 } APMFILEHEADER;
33 #define APMHEADER_KEY 0x9AC6CDD7l