[NTDLL]
[reactos.git] / base / applications / mmc / precomp.h
1 #pragma once
2
3 #include <windows.h>
4 #include <commctrl.h>
5 #include <shellapi.h>
6 #include <tchar.h>
7 #include "resource.h"
8
9 /* console.c */
10
11 BOOL
12 RegisterMMCWndClasses(VOID);
13
14 VOID
15 UnregisterMMCWndClasses(VOID);
16
17 HWND
18 CreateConsoleWindow(IN LPCTSTR lpFileName OPTIONAL);
19
20 /* misc.c */
21
22 INT
23 LengthOfStrResource(IN HINSTANCE hInst,
24 IN UINT uID);
25
26 DWORD
27 LoadAndFormatString(IN HINSTANCE hInstance,
28 IN UINT uID,
29 OUT LPTSTR *lpTarget,
30 ...);
31
32 /* mmc.c */
33
34 extern HINSTANCE hAppInstance;
35 extern HANDLE hAppHeap;