2015-11-18 19:24:08 +00:00
|
|
|
/*
|
2016-11-02 19:19:17 +00:00
|
|
|
* PROJECT: ReactOS Character Map
|
2015-11-18 19:24:08 +00:00
|
|
|
* LICENSE: GPL - See COPYING in the top level directory
|
2016-11-02 19:19:17 +00:00
|
|
|
* FILE: base/applications/charmap/charmap.cpp
|
2015-11-18 19:24:08 +00:00
|
|
|
* COPYRIGHT: Copyright 2006 Ged Murphy <gedmurphy@gmail.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "precomp.h"
|
|
|
|
#include "MainWindow.h"
|
|
|
|
|
|
|
|
int WINAPI
|
|
|
|
wWinMain(HINSTANCE hThisInstance,
|
|
|
|
HINSTANCE hPrevInstance,
|
|
|
|
LPWSTR lpCmdLine,
|
|
|
|
int nCmdShow)
|
|
|
|
{
|
|
|
|
CCharMapWindow CharMap;
|
|
|
|
return CharMap.Create(hThisInstance, nCmdShow);
|
|
|
|
}
|