reactos/base/applications/mmc/precomp.h
Hermès Bélusca-Maïto 49ab546ac3 Sync up with trunk r61578.
svn path=/branches/ntvdm/; revision=61579
2014-01-11 00:00:10 +00:00

39 lines
679 B
C

#include <stdarg.h>
#include <windef.h>
#include <winbase.h>
#include <winuser.h>
#define WM_USER_CLOSE_CHILD (WM_USER + 1)
/* console.c */
BOOL
RegisterMMCWndClasses(VOID);
VOID
UnregisterMMCWndClasses(VOID);
HWND
CreateConsoleWindow(IN LPCTSTR lpFileName OPTIONAL,
int nCmdShow);
/* misc.c */
INT
LengthOfStrResource(IN HINSTANCE hInst,
IN UINT uID);
DWORD
LoadAndFormatString(IN HINSTANCE hInstance,
IN UINT uID,
OUT LPTSTR *lpTarget,
...);
/* mmc.c */
extern HINSTANCE hAppInstance;
extern HANDLE hAppHeap;
extern HWND hwndMainConsole;
extern HWND hwndMDIClient;