mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 07:00:19 +00:00
ddb3d908c9
svn path=/branches/shell-experiments/; revision=62286
44 lines
740 B
C
44 lines
740 B
C
#ifndef _MMC_PCH_
|
|
#define _MMC_PCH_
|
|
|
|
#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;
|
|
|
|
#endif /* _MMC_PCH_ */
|