mirror of
https://github.com/reactos/reactos.git
synced 2025-01-04 21:38:43 +00:00
- strmini.h: Include windef.h so CDECL gets defined for msvc version of DEFINE_GUIDEX in ks.h
- Fix misc msvc issues in paint, setup, mmsys and mmebuddy - Simplify the way kernel32 is built, reverting the "test" from 14241 svn path=/trunk/; revision=42362
This commit is contained in:
parent
5e1ea71af7
commit
7aa73a6110
13 changed files with 164 additions and 164 deletions
|
@ -81,12 +81,13 @@ void Poly(HDC hdc, POINT *lpPoints, int nCount, int fg, int bg, int thickness, i
|
|||
|
||||
void Bezier(HDC hdc, POINT p1, POINT p2, POINT p3, POINT p4, int color, int thickness)
|
||||
{
|
||||
HPEN oldPen;
|
||||
POINT fourPoints[4];
|
||||
fourPoints[0] = p1;
|
||||
fourPoints[1] = p2;
|
||||
fourPoints[2] = p3;
|
||||
fourPoints[3] = p4;
|
||||
HPEN oldPen = SelectObject(hdc, CreatePen(PS_SOLID, thickness, color));
|
||||
oldPen = SelectObject(hdc, CreatePen(PS_SOLID, thickness, color));
|
||||
PolyBezier(hdc, fourPoints, 4);
|
||||
DeleteObject(SelectObject(hdc, oldPen));
|
||||
}
|
||||
|
|
|
@ -313,8 +313,9 @@ LRESULT CALLBACK WindowProcedure (HWND hwnd, UINT message, WPARAM wParam, LPARAM
|
|||
if (hwnd==hwndMiniature)
|
||||
{
|
||||
long mclient[4];
|
||||
HDC hdc;
|
||||
GetClientRect(hwndMiniature, (LPRECT)&mclient);
|
||||
HDC hdc = GetDC(hwndMiniature);
|
||||
hdc = GetDC(hwndMiniature);
|
||||
BitBlt(hdc, -min(imgXRes*GetScrollPos(hScrollbox, SB_HORZ)/10000, imgXRes-mclient[2]),
|
||||
-min(imgYRes*GetScrollPos(hScrollbox, SB_VERT)/10000, imgYRes-mclient[3]), imgXRes, imgYRes, hDrawingDC, 0, 0, SRCCOPY);
|
||||
ReleaseDC(hwndMiniature, hdc);
|
||||
|
|
|
@ -364,8 +364,9 @@ LangSelDlgProc(HWND hwndDlg,
|
|||
|
||||
if (tindex != CB_ERR)
|
||||
{
|
||||
WORD LangID;
|
||||
SetupData.SelectedLangId = SendMessage(hList, CB_GETITEMDATA, (WPARAM) tindex, (LPARAM) 0);
|
||||
WORD LangID = _tcstol(SetupData.pLanguages[SetupData.SelectedLangId].LangId, NULL, 16);
|
||||
LangID = _tcstol(SetupData.pLanguages[SetupData.SelectedLangId].LangId, NULL, 16);
|
||||
SetThreadLocale(MAKELCID(LangID, SORT_DEFAULT));
|
||||
// FIXME: need to reload all resource to force
|
||||
// the new language setting
|
||||
|
|
|
@ -292,9 +292,9 @@ VolumeDlgProc(HWND hwndDlg,
|
|||
LPARAM lParam)
|
||||
{
|
||||
static IMGINFO ImgInfo;
|
||||
PGLOBAL_DATA pGlobalData;
|
||||
UNREFERENCED_PARAMETER(lParam);
|
||||
UNREFERENCED_PARAMETER(wParam);
|
||||
PGLOBAL_DATA pGlobalData;
|
||||
|
||||
pGlobalData = (PGLOBAL_DATA)GetWindowLongPtr(hwndDlg, DWLP_USER);
|
||||
|
||||
|
|
|
@ -1,154 +1,144 @@
|
|||
<?xml version="1.0"?>
|
||||
<!DOCTYPE group SYSTEM "../../../tools/rbuild/project.dtd">
|
||||
<group>
|
||||
<module name="kernel32_base" type="objectlibrary" crt="dll">
|
||||
<include base="kernel32_base">.</include>
|
||||
<include base="kernel32_base">include</include>
|
||||
<include base="ReactOS">include/reactos/subsys</include>
|
||||
<define name="_KERNEL32_" />
|
||||
<redefine name="_WIN32_WINNT">0x0600</redefine>
|
||||
<define name="__NO_CTYPE_INLINES" />
|
||||
<define name="NTDDI_VERSION">0x05020100</define>
|
||||
<dependency>errcodes</dependency>
|
||||
<!-- See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38269
|
||||
<pch>k32.h</pch>
|
||||
-->
|
||||
<group compilerset="gcc">
|
||||
<!-- See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38054#c7 -->
|
||||
<compilerflag>-fno-unit-at-a-time</compilerflag>
|
||||
<compilerflag compiler="cxx">-fno-exceptions</compilerflag>
|
||||
<compilerflag compiler="cxx">-fno-rtti</compilerflag>
|
||||
</group>
|
||||
<directory name="debug">
|
||||
<file>debugger.c</file>
|
||||
<file>output.c</file>
|
||||
</directory>
|
||||
<directory name="except">
|
||||
<file>except.c</file>
|
||||
</directory>
|
||||
<directory name="file">
|
||||
<file>backup.c</file>
|
||||
<file>bintype.c</file>
|
||||
<file>cnotify.c</file>
|
||||
<file>copy.c</file>
|
||||
<file>create.c</file>
|
||||
<file>curdir.c</file>
|
||||
<file>delete.c</file>
|
||||
<file>deviceio.c</file>
|
||||
<file>dir.c</file>
|
||||
<file>dosdev.c</file>
|
||||
<file>file.c</file>
|
||||
<file>find.c</file>
|
||||
<file>hardlink.c</file>
|
||||
<file>iocompl.c</file>
|
||||
<file>lfile.c</file>
|
||||
<file>lock.c</file>
|
||||
<file>mailslot.c</file>
|
||||
<file>move.c</file>
|
||||
<file>npipe.c</file>
|
||||
<file>pipe.c</file>
|
||||
<file>rw.c</file>
|
||||
<file>tape.c</file>
|
||||
<file>volume.c</file>
|
||||
</directory>
|
||||
<directory name="mem">
|
||||
<file>global.c</file>
|
||||
<file>heap.c</file>
|
||||
<file>isbad.c</file>
|
||||
<file>local.c</file>
|
||||
<file>procmem.c</file>
|
||||
<file>resnotify.c</file>
|
||||
<file>section.c</file>
|
||||
<file>virtual.c</file>
|
||||
</directory>
|
||||
<directory name="misc">
|
||||
<file>actctx.c</file>
|
||||
<file>atom.c</file>
|
||||
<file>chartype.c</file>
|
||||
<file>collation.c</file>
|
||||
<file>casemap.c</file>
|
||||
<file>comm.c</file>
|
||||
<file>commdcb.c</file>
|
||||
<file>computername.c</file>
|
||||
<file>console.c</file>
|
||||
<file>dllmain.c</file>
|
||||
<file>env.c</file>
|
||||
<file>error.c</file>
|
||||
<file>errormsg.c</file>
|
||||
<file>fold.c</file>
|
||||
<file>handle.c</file>
|
||||
<file>lang.c</file>
|
||||
<file>ldr.c</file>
|
||||
<file>lzexpand.c</file>
|
||||
<file>muldiv.c</file>
|
||||
<file>nls.c</file>
|
||||
<file>perfcnt.c</file>
|
||||
<file>power.c</file>
|
||||
<file>recovery.c</file>
|
||||
<file>res.c</file>
|
||||
<file>sortkey.c</file>
|
||||
<file>stubs.c</file>
|
||||
<file>sysinfo.c</file>
|
||||
<file>time.c</file>
|
||||
<file>timerqueue.c</file>
|
||||
<file>toolhelp.c</file>
|
||||
<file>version.c</file>
|
||||
</directory>
|
||||
<directory name="process">
|
||||
<file>cmdline.c</file>
|
||||
<file>procsup.c</file>
|
||||
<file>job.c</file>
|
||||
<file>proc.c</file>
|
||||
<file>session.c</file>
|
||||
</directory>
|
||||
<directory name="string">
|
||||
<file>lstring.c</file>
|
||||
</directory>
|
||||
<directory name="synch">
|
||||
<file>condvar.c</file>
|
||||
<file>critical.c</file>
|
||||
<file>event.c</file>
|
||||
<file>mutex.c</file>
|
||||
<file>sem.c</file>
|
||||
<file>timer.c</file>
|
||||
<file>wait.c</file>
|
||||
</directory>
|
||||
<directory name="thread">
|
||||
<file>fiber.c</file>
|
||||
<file>fls.c</file>
|
||||
<file>thread.c</file>
|
||||
<file>tls.c</file>
|
||||
</directory>
|
||||
<directory name="misc">
|
||||
<file>lcformat.c</file>
|
||||
<file>profile.c</file>
|
||||
<file>utils.c</file>
|
||||
</directory>
|
||||
<directory name="thread">
|
||||
<if property="ARCH" value="i386">
|
||||
<directory name="i386">
|
||||
<file>fiber.S</file>
|
||||
<file>thread.S</file>
|
||||
</directory>
|
||||
</if>
|
||||
</directory>
|
||||
|
||||
<directory name="misc">
|
||||
<file>icustubs.cpp</file>
|
||||
</directory>
|
||||
<library>normalize</library>
|
||||
</module>
|
||||
<module name="kernel32" type="win32dll" baseaddress="${BASEADDRESS_KERNEL32}" installbase="system32" installname="kernel32.dll" crt="dll">
|
||||
<importlibrary definition="kernel32.pspec" />
|
||||
<include base="kernel32">.</include>
|
||||
<include base="kernel32" root="intermediate">.</include>
|
||||
<include base="kernel32">include</include>
|
||||
<library>kernel32_base</library>
|
||||
<library>wine</library>
|
||||
<library>pseh</library>
|
||||
|
||||
<file>kernel32.rc</file>
|
||||
|
||||
<library>ntdll</library>
|
||||
</module>
|
||||
</group>
|
||||
<module name="kernel32" type="win32dll" crt="dll" baseaddress="${BASEADDRESS_KERNEL32}" installbase="system32" installname="kernel32.dll">
|
||||
<importlibrary definition="kernel32.pspec" />
|
||||
<include base="kernel32">.</include>
|
||||
<include base="kernel32" root="intermediate">.</include>
|
||||
<include base="kernel32">include</include>
|
||||
<include base="ReactOS">include/reactos/subsys</include>
|
||||
<library>wine</library>
|
||||
<library>pseh</library>
|
||||
<library>normalize</library>
|
||||
<library>ntdll</library>
|
||||
<define name="_KERNEL32_" />
|
||||
<redefine name="_WIN32_WINNT">0x0600</redefine>
|
||||
<define name="__NO_CTYPE_INLINES" />
|
||||
<define name="NTDDI_VERSION">0x05020100</define>
|
||||
<dependency>errcodes</dependency>
|
||||
<!-- See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38269
|
||||
<pch>k32.h</pch>
|
||||
-->
|
||||
<group compilerset="gcc">
|
||||
<!-- See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38054#c7 -->
|
||||
<compilerflag>-fno-unit-at-a-time</compilerflag>
|
||||
<compilerflag compiler="cxx">-fno-exceptions</compilerflag>
|
||||
<compilerflag compiler="cxx">-fno-rtti</compilerflag>
|
||||
</group>
|
||||
<directory name="debug">
|
||||
<file>debugger.c</file>
|
||||
<file>output.c</file>
|
||||
</directory>
|
||||
<directory name="except">
|
||||
<file>except.c</file>
|
||||
</directory>
|
||||
<directory name="file">
|
||||
<file>backup.c</file>
|
||||
<file>bintype.c</file>
|
||||
<file>cnotify.c</file>
|
||||
<file>copy.c</file>
|
||||
<file>create.c</file>
|
||||
<file>curdir.c</file>
|
||||
<file>delete.c</file>
|
||||
<file>deviceio.c</file>
|
||||
<file>dir.c</file>
|
||||
<file>dosdev.c</file>
|
||||
<file>file.c</file>
|
||||
<file>find.c</file>
|
||||
<file>hardlink.c</file>
|
||||
<file>iocompl.c</file>
|
||||
<file>lfile.c</file>
|
||||
<file>lock.c</file>
|
||||
<file>mailslot.c</file>
|
||||
<file>move.c</file>
|
||||
<file>npipe.c</file>
|
||||
<file>pipe.c</file>
|
||||
<file>rw.c</file>
|
||||
<file>tape.c</file>
|
||||
<file>volume.c</file>
|
||||
</directory>
|
||||
<directory name="mem">
|
||||
<file>global.c</file>
|
||||
<file>heap.c</file>
|
||||
<file>isbad.c</file>
|
||||
<file>local.c</file>
|
||||
<file>procmem.c</file>
|
||||
<file>resnotify.c</file>
|
||||
<file>section.c</file>
|
||||
<file>virtual.c</file>
|
||||
</directory>
|
||||
<directory name="misc">
|
||||
<file>actctx.c</file>
|
||||
<file>atom.c</file>
|
||||
<file>chartype.c</file>
|
||||
<file>collation.c</file>
|
||||
<file>casemap.c</file>
|
||||
<file>comm.c</file>
|
||||
<file>commdcb.c</file>
|
||||
<file>computername.c</file>
|
||||
<file>console.c</file>
|
||||
<file>dllmain.c</file>
|
||||
<file>env.c</file>
|
||||
<file>error.c</file>
|
||||
<file>errormsg.c</file>
|
||||
<file>fold.c</file>
|
||||
<file>handle.c</file>
|
||||
<file>lang.c</file>
|
||||
<file>ldr.c</file>
|
||||
<file>lzexpand.c</file>
|
||||
<file>muldiv.c</file>
|
||||
<file>nls.c</file>
|
||||
<file>perfcnt.c</file>
|
||||
<file>power.c</file>
|
||||
<file>recovery.c</file>
|
||||
<file>res.c</file>
|
||||
<file>sortkey.c</file>
|
||||
<file>stubs.c</file>
|
||||
<file>sysinfo.c</file>
|
||||
<file>time.c</file>
|
||||
<file>timerqueue.c</file>
|
||||
<file>toolhelp.c</file>
|
||||
<file>version.c</file>
|
||||
</directory>
|
||||
<directory name="process">
|
||||
<file>cmdline.c</file>
|
||||
<file>procsup.c</file>
|
||||
<file>job.c</file>
|
||||
<file>proc.c</file>
|
||||
<file>session.c</file>
|
||||
</directory>
|
||||
<directory name="string">
|
||||
<file>lstring.c</file>
|
||||
</directory>
|
||||
<directory name="synch">
|
||||
<file>condvar.c</file>
|
||||
<file>critical.c</file>
|
||||
<file>event.c</file>
|
||||
<file>mutex.c</file>
|
||||
<file>sem.c</file>
|
||||
<file>timer.c</file>
|
||||
<file>wait.c</file>
|
||||
</directory>
|
||||
<directory name="thread">
|
||||
<file>fiber.c</file>
|
||||
<file>fls.c</file>
|
||||
<file>thread.c</file>
|
||||
<file>tls.c</file>
|
||||
</directory>
|
||||
<directory name="misc">
|
||||
<file>lcformat.c</file>
|
||||
<file>profile.c</file>
|
||||
<file>utils.c</file>
|
||||
</directory>
|
||||
<directory name="thread">
|
||||
<if property="ARCH" value="i386">
|
||||
<directory name="i386">
|
||||
<file>fiber.S</file>
|
||||
<file>thread.S</file>
|
||||
</directory>
|
||||
</if>
|
||||
</directory>
|
||||
<directory name="misc">
|
||||
<file>icustubs.cpp</file>
|
||||
</directory>
|
||||
<file>kernel32.rc</file>
|
||||
</module>
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
#define _STREAM_H
|
||||
|
||||
#include <ntddk.h>
|
||||
#include <windef.h>
|
||||
#include <ks.h>
|
||||
|
||||
#define STREAMAPI __stdcall
|
||||
|
|
|
@ -21,7 +21,8 @@
|
|||
/*
|
||||
Standard MME driver entry-point for messages relating to auxiliary devices.
|
||||
*/
|
||||
APIENTRY DWORD
|
||||
DWORD
|
||||
APIENTRY
|
||||
auxMessage(
|
||||
DWORD DeviceId,
|
||||
DWORD Message,
|
||||
|
|
|
@ -21,7 +21,8 @@
|
|||
/*
|
||||
Standard MME driver entry-point for messages relating to MIDI input.
|
||||
*/
|
||||
APIENTRY DWORD
|
||||
DWORD
|
||||
APIENTRY
|
||||
midMessage(
|
||||
DWORD DeviceId,
|
||||
DWORD Message,
|
||||
|
|
|
@ -21,7 +21,8 @@
|
|||
/*
|
||||
Standard MME driver entry-point for messages relating to MIDI output.
|
||||
*/
|
||||
APIENTRY DWORD
|
||||
DWORD
|
||||
APIENTRY
|
||||
modMessage(
|
||||
DWORD DeviceId,
|
||||
DWORD Message,
|
||||
|
|
|
@ -21,7 +21,8 @@
|
|||
/*
|
||||
Standard MME driver entry-point for messages relating to mixers.
|
||||
*/
|
||||
APIENTRY DWORD
|
||||
DWORD
|
||||
APIENTRY
|
||||
mxdMessage(
|
||||
DWORD DeviceId,
|
||||
DWORD Message,
|
||||
|
|
|
@ -224,11 +224,11 @@ EnqueueWaveHeader(
|
|||
PSOUND_DEVICE_INSTANCE SoundDeviceInstance,
|
||||
IN PVOID Parameter)
|
||||
{
|
||||
PWAVEHDR WaveHeader = (PWAVEHDR) Parameter;
|
||||
|
||||
VALIDATE_MMSYS_PARAMETER( SoundDeviceInstance );
|
||||
VALIDATE_MMSYS_PARAMETER( Parameter );
|
||||
|
||||
PWAVEHDR WaveHeader = (PWAVEHDR) Parameter;
|
||||
|
||||
/* Initialise */
|
||||
WaveHeader->lpNext = NULL;
|
||||
|
||||
|
|
|
@ -22,7 +22,8 @@
|
|||
Standard MME driver entry-point for messages relating to wave audio
|
||||
input.
|
||||
*/
|
||||
APIENTRY DWORD
|
||||
DWORD
|
||||
APIENTRY
|
||||
widMessage(
|
||||
DWORD DeviceId,
|
||||
DWORD Message,
|
||||
|
|
|
@ -31,7 +31,8 @@ MMRESULT HelloWorld(PSOUND_DEVICE_INSTANCE Instance, PVOID String)
|
|||
Standard MME driver entry-point for messages relating to wave audio
|
||||
output.
|
||||
*/
|
||||
APIENTRY DWORD
|
||||
DWORD
|
||||
APIENTRY
|
||||
wodMessage(
|
||||
DWORD DeviceId,
|
||||
DWORD Message,
|
||||
|
|
Loading…
Reference in a new issue