ReactOS 0.4.15-dev-7994-gb388cb6
mmc.c
Go to the documentation of this file.
1/*
2 * ReactOS Management Console
3 * Copyright (C) 2006 - 2007 Thomas Weidenmueller
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20#include "precomp.h"
21
22
27
28
29int WINAPI
31 HINSTANCE hPrevInstance,
32 LPTSTR lpCmdLine,
33 int nCmdShow)
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 @1633 Msg[]
VOID WINAPI InitCommonControls(void)
Definition: commctrl.c:863
#define NULL
Definition: types.h:112
#define GetProcessHeap()
Definition: compat.h:736
#define _tWinMain
Definition: tchar.h:498
TW_UINT32 TW_UINT16 TW_UINT16 MSG
Definition: twain.h:1829
#define WINAPI
Definition: msvc.h:6
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
CHAR * LPTSTR
Definition: xmlstorage.h:192