[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 #include <commdlg.h>
13
14 #include "resources.h"
15 #include "cliputils.h"
16 #include "fileutils.h"
17 #include "winutils.h"
18
19 #define MAX_STRING_LEN 255
20 #define DISPLAY_MENU_POS 2
21 #define CF_NONE 0
22
23 typedef struct _CLIPBOARD_GLOBALS
24 {
25 HINSTANCE hInstance;
26 HWND hMainWnd;
27 HWND hWndNext;
28 HMENU hMenu;
29 UINT uDisplayFormat;
30 UINT uCheckedItem;
31 } CLIPBOARD_GLOBALS;
32
33 extern CLIPBOARD_GLOBALS Globals;
34
35 #endif /* _CLIPBRD_PCH_ */