ReactOS 0.4.15-dev-7924-g5949c20
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
43 {
44 /* FIXME - Display error */
45 return 1;
46 }
47
48 hwndMainConsole = CreateConsoleWindow(NULL /*argc > 1 ? argv[1] : NULL*/, nCmdShow);
49 if (hwndMainConsole != NULL)
50 {
51 while (GetMessage(&Msg, NULL, 0, 0))
52 {
54 {
57 }
58 }
59 }
60
62
63 return 0;
64}
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 @1632 Msg[]
VOID WINAPI InitCommonControls(void)
Definition: commctrl.c:863
#define NULL
Definition: types.h:112
#define GetProcessHeap()
Definition: compat.h:736
TW_UINT32 TW_UINT16 TW_UINT16 MSG
Definition: twain.h:1829
BOOL WINAPI TranslateMessage(_In_ const MSG *)
#define GetMessage
Definition: winuser.h:5790
BOOL WINAPI TranslateMDISysAccel(_In_ HWND, _In_ LPMSG)
#define DispatchMessage
Definition: winuser.h:5765

Variable Documentation

◆ hAppHeap

HANDLE hAppHeap

Definition at line 24 of file mmc.c.

Referenced by _tWinMain(), ConsoleChildFrmProc(), ConsoleMainFrameWndProc(), and FrameOnCreate().

◆ hAppInstance

◆ hwndMainConsole

HWND hwndMainConsole

Definition at line 25 of file mmc.c.

Referenced by _tWinMain(), and ConsoleChildFrmProc().

◆ hwndMDIClient