ReactOS 0.4.17-dev-806-gffa4164
mmc.c File Reference
#include "precomp.h"
Include dependency graph for mmc.c:

Go to the source code of this file.

Functions

int WINAPI _tWinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, LPTSTR lpCmdLine, int nCmdShow)
 

Variables

HINSTANCE hAppInstance
 
HANDLE hAppHeap
 
HWND hwndMainConsole
 
HWND hwndMDIClient
 

Function Documentation

◆ _tWinMain()

int WINAPI _tWinMain ( HINSTANCE  hInstance,
HINSTANCE  hPrevInstance,
LPTSTR  lpCmdLine,
int  nCmdShow 
)

Definition at line 30 of file mmc.c.

34{
35 MSG Msg;
36
37 hAppInstance = hInstance; // GetModuleHandle(NULL);
39
41
42 /* We have extended the MMC_ConsoleFile format with a custom RosLaunch node that can launch external files.
43 * This support can be removed after we have converted all our Snap-ins from .exe to real MMC COM DLLs. */
44 if (HandleRosMscLaunch(lpCmdLine))
45 return 0;
46
48 {
49 /* FIXME - Display error */
50 return 1;
51 }
52
53 hwndMainConsole = CreateConsoleWindow(NULL /*argc > 1 ? argv[1] : NULL*/, nCmdShow);
54 if (hwndMainConsole != NULL)
55 {
56 while (GetMessage(&Msg, NULL, 0, 0))
57 {
59 {
62 }
63 }
64 }
65
67
68 return 0;
69}
VOID UnregisterMMCWndClasses(VOID)
Definition: console.c:576
HWND CreateConsoleWindow(IN LPCTSTR lpFileName OPTIONAL, int nCmdShow)
Definition: console.c:585
BOOL RegisterMMCWndClasses(VOID)
Definition: console.c:526
HWND hwndMDIClient
Definition: mmc.c:26
HANDLE hAppHeap
Definition: mmc.c:24
HINSTANCE hAppInstance
Definition: mmc.c:23
HWND hwndMainConsole
Definition: mmc.c:25
HINSTANCE hInstance
Definition: charmap.c:19
struct @1803 Msg[]
VOID WINAPI InitCommonControls(void)
Definition: commctrl.c:874
#define NULL
Definition: types.h:112
#define GetProcessHeap()
Definition: compat.h:736
EXTERN_C BOOL HandleRosMscLaunch(PCWSTR pszCmdLine)
Definition: mscfile.c:124
TW_UINT32 TW_UINT16 TW_UINT16 MSG
Definition: twain.h:1829
BOOL WINAPI TranslateMessage(_In_ const MSG *)
#define GetMessage
Definition: winuser.h:5956
BOOL WINAPI TranslateMDISysAccel(_In_ HWND, _In_ LPMSG)
#define DispatchMessage
Definition: winuser.h:5931

Variable Documentation

◆ hAppHeap

◆ hAppInstance

◆ hwndMainConsole

HWND hwndMainConsole

Definition at line 25 of file mmc.c.

Referenced by _tWinMain(), and ConsoleChildFrmProc().

◆ hwndMDIClient