[TRANSLATION][CLIPBRD] Italian translation implemented (#344)
[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 #include <winnls.h>
18
19 #include "resources.h"
20 #include "cliputils.h"
21 #include "fileutils.h"
22 #include "winutils.h"
23 #include "scrollutils.h"
24
25 #define MAX_STRING_LEN 255
26 #define DISPLAY_MENU_POS 2
27 #define CF_NONE 0
28
29 typedef struct _CLIPBOARD_GLOBALS
30 {
31 HINSTANCE hInstance;
32 HWND hMainWnd;
33 HWND hWndNext;
34 HMENU hMenu;
35 UINT uDisplayFormat;
36 UINT uCheckedItem;
37 UINT uLinesToScroll;
38 HBITMAP hDspBmp;
39 } CLIPBOARD_GLOBALS;
40
41 extern CLIPBOARD_GLOBALS Globals;
42
43 #endif /* _CLIPBRD_PCH_ */