mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
20 lines
479 B
C++
20 lines
479 B
C++
/*
|
|
* PROJECT: ReactOS Character Map
|
|
* LICENSE: GPL - See COPYING in the top level directory
|
|
* FILE: base/applications/charmap/charmap.cpp
|
|
* 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);
|
|
}
|