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