mirror of
https://github.com/reactos/reactos.git
synced 2024-11-05 14:19:25 +00:00
2012315e5a
svn path=/trunk/; revision=34303
67 lines
1.8 KiB
C
67 lines
1.8 KiB
C
/*
|
|
* PROJECT: ReactOS VGA Font Editor
|
|
* LICENSE: GNU General Public License Version 2.0 or any later version
|
|
* FILE: devutils/vgafontedit/main.c
|
|
* PURPOSE: Main entry point of the application
|
|
* COPYRIGHT: Copyright 2008 Colin Finck <mail@colinfinck.de>
|
|
*/
|
|
|
|
#include "precomp.h"
|
|
|
|
static const WCHAR szCharacterClipboardFormat[] = L"RosVgaFontChar";
|
|
|
|
HINSTANCE hInstance;
|
|
HANDLE hProcessHeap;
|
|
PWSTR szAppName;
|
|
UINT uCharacterClipboardFormat;
|
|
|
|
INT WINAPI
|
|
wWinMain(HINSTANCE hInst, HINSTANCE hPrevInstance, LPWSTR lpCmdLine, int nCmdShow)
|
|
{
|
|
HACCEL hAccel;
|
|
INT nRet = 1;
|
|
MSG msg;
|
|
PMAIN_WND_INFO Info = 0;
|
|
|
|
UNREFERENCED_PARAMETER(hPrevInstance);
|
|
UNREFERENCED_PARAMETER(lpCmdLine);
|
|
|
|
hInstance = hInst;
|
|
hProcessHeap = GetProcessHeap();
|
|
|
|
AllocAndLoadString(&szAppName, IDS_APPTITLE);
|
|
|
|
hAccel = LoadAcceleratorsW( hInstance, MAKEINTRESOURCEW(IDA_MAINACCELERATORS) );
|
|
|
|
uCharacterClipboardFormat = RegisterClipboardFormatW(szCharacterClipboardFormat);
|
|
if(!uCharacterClipboardFormat)
|
|
return 1;
|
|
|
|
if( InitMainWndClass() && InitFontWndClass() && InitFontBoxesWndClass() && InitEditGlyphWndClasses() )
|
|
{
|
|
if( CreateMainWindow(nCmdShow, &Info) )
|
|
{
|
|
while( GetMessageW(&msg, NULL, 0, 0) )
|
|
{
|
|
if( !TranslateMDISysAccel(Info->hMdiClient, &msg) &&
|
|
!TranslateAccelerator(Info->hMainWnd, hAccel, &msg) )
|
|
{
|
|
TranslateMessage(&msg);
|
|
DispatchMessage(&msg);
|
|
}
|
|
}
|
|
|
|
nRet = 0;
|
|
}
|
|
}
|
|
|
|
HeapFree(hProcessHeap, 0, szAppName);
|
|
|
|
// Just unregister our window classes, don't care whether they were created or not
|
|
UnInitEditGlyphWndClasses();
|
|
UnInitFontBoxesWndClass();
|
|
UnInitFontWndClass();
|
|
UnInitMainWndClass();
|
|
|
|
return nRet;
|
|
}
|