ReactOS 0.4.17-dev-806-gffa4164
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
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
#define _tWinMain
Definition: tchar.h:498
LPSTR LPTSTR
Definition: ms-dtyp.idl:131
EXTERN_C BOOL HandleRosMscLaunch(PCWSTR pszCmdLine)
Definition: mscfile.c:124
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:5956
BOOL WINAPI TranslateMDISysAccel(_In_ HWND, _In_ LPMSG)
#define DispatchMessage
Definition: winuser.h:5931