[MMCCLIENT]
[reactos.git] / reactos / base / applications / mmc / mmc.c
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 #include <tchar.h>
23 #include <commctrl.h>
24
25 HINSTANCE hAppInstance;
26 HANDLE hAppHeap;
27 HWND hwndMainConsole;
28 HWND hwndMDIClient;
29
30
31 int WINAPI
32 _tWinMain(HINSTANCE hInstance,
33 HINSTANCE hPrevInstance,
34 LPTSTR lpCmdLine,
35 int nCmdShow)
36 {
37 MSG Msg;
38
39 hAppInstance = hInstance; // GetModuleHandle(NULL);
40 hAppHeap = GetProcessHeap();
41
42 InitCommonControls();
43
44 if (!RegisterMMCWndClasses())
45 {
46 /* FIXME - Display error */
47 return 1;
48 }
49
50 hwndMainConsole = CreateConsoleWindow(NULL /*argc > 1 ? argv[1] : NULL*/, nCmdShow);
51 if (hwndMainConsole != NULL)
52 {
53 while (GetMessage(&Msg, NULL, 0, 0))
54 {
55 if (!TranslateMDISysAccel(hwndMDIClient, &Msg))
56 {
57 TranslateMessage(&Msg);
58 DispatchMessage(&Msg);
59 }
60 }
61 }
62
63 UnregisterMMCWndClasses();
64
65 return 0;
66 }