reactos/base/applications/mmc/precomp.h
Amine Khaldi 527f2f9057 [SHELL/EXPERIMENTS]
* Create a branch for some evul shell experiments.

svn path=/branches/shell-experiments/; revision=61927
2014-02-02 19:37:27 +00:00

40 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;