mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 13:35:47 +00:00
Some obsolete flags removed, some useless compiler flags removed & shit. Nothing earth-shattering
<insert ginormous commit message ruined by TortoiseSVN's shitty GUI> svn path=/trunk/; revision=40537
This commit is contained in:
parent
0464762cd6
commit
bbfe8fa8d7
124 changed files with 21 additions and 166 deletions
|
@ -2,9 +2,8 @@
|
|||
<include base="rtshared">.</include>
|
||||
<include base="ReactOS">include/reactos/wine</include>
|
||||
<include base="cmd">.</include>
|
||||
<define name="__USE_W32API" />
|
||||
<define name="ANONYMOUSUNIONS" />
|
||||
<define name="_WIN32_WINNT">0x0501</define>
|
||||
<redefine name="_WIN32_WINNT">0x501</redefine>
|
||||
<library>rtshared</library>
|
||||
<library>regtests</library>
|
||||
<library>cmd_base</library>
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
<module name="queuetest" type="win32cui" installbase="system32" installname="queuetest.exe">
|
||||
<define name="__USE_W32API" />
|
||||
<library>kernel32</library>
|
||||
<file>queuetest.c</file>
|
||||
</module>
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
<module name="kmtloader" type="win32cui" installbase="system32" installname="kmtloader.exe">
|
||||
<define name="__USE_W32API" />
|
||||
<library>kernel32</library>
|
||||
<library>advapi32</library>
|
||||
<file>kmtloader.c</file>
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
<module name="movefile" type="win32cui" installbase="system32" installname="movefiletest.exe">
|
||||
<include base="movefile">.</include>
|
||||
<define name="__USE_W32API" />
|
||||
<library>kernel32</library>
|
||||
<library>advapi32</library>
|
||||
<library>user32</library>
|
||||
|
|
|
@ -63,7 +63,7 @@ LRESULT CALLBACK WndProc(HWND hWnd,
|
|||
}
|
||||
|
||||
|
||||
INT main(INT argc, CHAR **argv)
|
||||
int wmain(int argc, wchar_t**argv)
|
||||
{
|
||||
HWND hWnd;
|
||||
MSG msg;
|
||||
|
@ -83,7 +83,7 @@ INT main(INT argc, CHAR **argv)
|
|||
return 0;
|
||||
}
|
||||
|
||||
testnum = atoi(argv[1]);
|
||||
testnum = _wtoi(argv[1]);
|
||||
if(testnum < 1 || testnum > 5)
|
||||
{
|
||||
printf("Unknown test %d\n", testnum);
|
||||
|
|
|
@ -180,7 +180,7 @@ LRESULT CALLBACK CaptWndProc(HWND hWnd,
|
|||
}
|
||||
|
||||
|
||||
INT main(INT argc, CHAR **argv)
|
||||
int wmain(int argc, wchar_t**argv)
|
||||
{
|
||||
HWND hWnd;
|
||||
MSG msg;
|
||||
|
@ -205,7 +205,7 @@ INT main(INT argc, CHAR **argv)
|
|||
return 0;
|
||||
}
|
||||
|
||||
testnum = atoi(argv[1]);
|
||||
testnum = _wtoi(argv[1]);
|
||||
if(testnum < 1 || testnum > 8)
|
||||
{
|
||||
printf("Unknown test %d\n", testnum);
|
||||
|
|
|
@ -1,11 +1,8 @@
|
|||
<?xml version="1.0"?>
|
||||
<!DOCTYPE project SYSTEM "tools/rbuild/project.dtd">
|
||||
<group>
|
||||
<module name="drawcap" type="win32cui" installbase="system32" installname="drawcap.exe">
|
||||
<module name="drawcap" type="win32cui" installbase="system32" installname="drawcap.exe" unicode="true">
|
||||
<include base="drawcap">.</include>
|
||||
<define name="__USE_W32API" />
|
||||
<define name="UNICODE" />
|
||||
<define name="_UNICODE" />
|
||||
<library>kernel32</library>
|
||||
<library>user32</library>
|
||||
<library>gdi32</library>
|
||||
|
@ -13,11 +10,8 @@
|
|||
<file>drawcap.rc</file>
|
||||
</module>
|
||||
|
||||
<module name="capicon" type="win32cui" installbase="system32" installname="capicon.exe">
|
||||
<module name="capicon" type="win32cui" installbase="system32" installname="capicon.exe" unicode="true">
|
||||
<include base="capicon">.</include>
|
||||
<define name="__USE_W32API" />
|
||||
<define name="UNICODE" />
|
||||
<define name="_UNICODE" />
|
||||
<library>kernel32</library>
|
||||
<library>user32</library>
|
||||
<library>gdi32</library>
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
<module name="kbdlayout" type="win32gui" installbase="system32" installname="kbdlayout.exe">
|
||||
<include base="kbdlayout">.</include>
|
||||
<define name="__USE_W32API" />
|
||||
<define name="_UNICODE" />
|
||||
<library>kernel32</library>
|
||||
<library>user32</library>
|
||||
<library>gdi32</library>
|
||||
|
|
|
@ -66,9 +66,9 @@ LRESULT CALLBACK WndProc(HWND hWnd,
|
|||
return DefWindowProc(hWnd, msg, wParam, lParam);
|
||||
}
|
||||
|
||||
int APIENTRY WinMain(HINSTANCE hInst,
|
||||
int APIENTRY wWinMain(HINSTANCE hInst,
|
||||
HINSTANCE hPrevInstance,
|
||||
LPSTR lpCmdLine,
|
||||
LPWSTR lpCmdLine,
|
||||
int nCmdShow)
|
||||
{
|
||||
HWND hWnd1, hWnd2, hWnd3;
|
||||
|
|
|
@ -1,8 +1,5 @@
|
|||
<module name="sysicon" type="win32gui" installbase="system32" installname="sysicon.exe">
|
||||
<module name="sysicon" type="win32gui" installbase="system32" installname="sysicon.exe" unicode="true">
|
||||
<include base="capicon">.</include>
|
||||
<define name="__USE_W32API" />
|
||||
<define name="UNICODE" />
|
||||
<define name="_UNICODE" />
|
||||
<library>kernel32</library>
|
||||
<library>user32</library>
|
||||
<library>gdi32</library>
|
||||
|
|
|
@ -4,11 +4,6 @@
|
|||
<include base="win32k">include</include>
|
||||
<include base="ntoskrnl">include</include>
|
||||
<include base="freetype">include</include>
|
||||
<define name="UNICODE" />
|
||||
<define name="__USE_W32API" />
|
||||
<define name="_WIN32_WINNT">0x0501</define>
|
||||
<define name="WINVER">0x600</define>
|
||||
<define name="_SEH_NO_NATIVE_NLG" />
|
||||
<define name="_WIN32K_" />
|
||||
<library>rtshared</library>
|
||||
<library>regtests</library>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue