- Sync with trunk r58248 to bring the latest changes from Amine (headers) and others...
[reactos.git] / base / applications / mmc / precomp.h
1 #include <stdarg.h>
2 #include <windef.h>
3 #include <winbase.h>
4 #include <winuser.h>
5 #include <commctrl.h>
6 #include <tchar.h>
7
8 #include "resource.h"
9
10 /* console.c */
11
12 BOOL
13 RegisterMMCWndClasses(VOID);
14
15 VOID
16 UnregisterMMCWndClasses(VOID);
17
18 HWND
19 CreateConsoleWindow(IN LPCTSTR lpFileName OPTIONAL);
20
21 /* misc.c */
22
23 INT
24 LengthOfStrResource(IN HINSTANCE hInst,
25 IN UINT uID);
26
27 DWORD
28 LoadAndFormatString(IN HINSTANCE hInstance,
29 IN UINT uID,
30 OUT LPTSTR *lpTarget,
31 ...);
32
33 /* mmc.c */
34
35 extern HINSTANCE hAppInstance;
36 extern HANDLE hAppHeap;