[CLIPBRD]
[reactos.git] / reactos / base / applications / clipbrd / precomp.h
1 #ifndef _CLIPBRD_PCH_
2 #define _CLIPBRD_PCH_
3
4 #pragma once
5
6 #include <windef.h>
7 #include <winbase.h>
8 #include <winuser.h>
9 #include <wingdi.h>
10 #include <shellapi.h>
11 #include <htmlhelp.h>
12
13 #include "resources.h"
14 #include "cliputils.h"
15 #include "winutils.h"
16
17 #define MAX_STRING_LEN 255
18 #define DISPLAY_MENU_POS 2
19 #define CF_NONE 0
20
21 typedef struct _CLIPBOARD_GLOBALS
22 {
23 HINSTANCE hInstance;
24 HWND hMainWnd;
25 HWND hWndNext;
26 HMENU hMenu;
27 UINT uDisplayFormat;
28 UINT uCheckedItem;
29 } CLIPBOARD_GLOBALS;
30
31 extern CLIPBOARD_GLOBALS Globals;
32
33 #endif /* _CLIPBRD_PCH_ */