mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 01:15:09 +00:00
Minor fixes, thanks Ged
svn path=/trunk/; revision=25841
This commit is contained in:
parent
148aa8601e
commit
5c7f9d04ce
2 changed files with 7 additions and 12 deletions
|
@ -216,10 +216,7 @@ DlgProc(HWND hDlg,
|
||||||
switch(wParam)
|
switch(wParam)
|
||||||
{
|
{
|
||||||
case ID_ABOUT:
|
case ID_ABOUT:
|
||||||
DialogBox(hInstance,
|
ShowAboutDlg(hDlg);
|
||||||
MAKEINTRESOURCE(IDD_ABOUTBOX),
|
|
||||||
hDlg,
|
|
||||||
AboutDialogProc);
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -234,10 +231,10 @@ DlgProc(HWND hDlg,
|
||||||
|
|
||||||
|
|
||||||
INT WINAPI
|
INT WINAPI
|
||||||
WinMain(HINSTANCE hInst,
|
_tWinMain(HINSTANCE hInst,
|
||||||
HINSTANCE hPrev,
|
HINSTANCE hPrev,
|
||||||
LPSTR Cmd,
|
LPTSTR Cmd,
|
||||||
int iCmd)
|
int iCmd)
|
||||||
{
|
{
|
||||||
INITCOMMONCONTROLSEX iccx;
|
INITCOMMONCONTROLSEX iccx;
|
||||||
INT Ret = 1;
|
INT Ret = 1;
|
||||||
|
|
|
@ -1,9 +1,7 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<rbuild xmlns:xi="http://www.w3.org/2001/XInclude">
|
<rbuild xmlns:xi="http://www.w3.org/2001/XInclude">
|
||||||
<module name="charmap" type="win32gui" installbase="system32" installname="charmap.exe">
|
<module name="charmap" type="win32gui" installbase="system32" installname="charmap.exe" unicode="yes">
|
||||||
<include base="charmap">.</include>
|
<include base="charmap">.</include>
|
||||||
<define name="UNICODE" />
|
|
||||||
<define name="_UNICODE" />
|
|
||||||
<define name="__REACTOS__" />
|
<define name="__REACTOS__" />
|
||||||
<define name="__USE_W32API" />
|
<define name="__USE_W32API" />
|
||||||
<define name="_WIN32_IE">0x600</define>
|
<define name="_WIN32_IE">0x600</define>
|
||||||
|
|
Loading…
Reference in a new issue