[BTRFS]
[reactos.git] / reactos / base / applications / charmap_new / charmap.cpp
1 /*
2 * PROJECT: ReactOS Device Managment
3 * LICENSE: GPL - See COPYING in the top level directory
4 * FILE: base/applications/mscutils/devmgmt/devmgmt.c
5 * PURPOSE: Bootstrap for the device manager
6 * COPYRIGHT: Copyright 2006 Ged Murphy <gedmurphy@gmail.com>
7 */
8
9 #include "precomp.h"
10 #include "MainWindow.h"
11
12 int WINAPI
13 wWinMain(HINSTANCE hThisInstance,
14 HINSTANCE hPrevInstance,
15 LPWSTR lpCmdLine,
16 int nCmdShow)
17 {
18 CCharMapWindow CharMap;
19 return CharMap.Create(hThisInstance, nCmdShow);
20 }