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