mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 22:05:49 +00:00
- mciGetCreatorTask returns HTASK not HANDLE
- remove broken LargeInteger functions from wintrnl.h svn path=/branches/ros-amd64-bringup/; revision=44818
This commit is contained in:
parent
8403dd605f
commit
d457242a5d
2 changed files with 1 additions and 11 deletions
|
@ -1886,7 +1886,7 @@ MCIDEVICEID WINAPI mciGetDeviceIDFromElementIDW(DWORD,LPCWSTR);
|
|||
BOOL WINAPI mciGetErrorStringA(MCIERROR,LPSTR,UINT);
|
||||
BOOL WINAPI mciGetErrorStringW(MCIERROR,LPWSTR,UINT);
|
||||
BOOL WINAPI mciSetYieldProc(MCIDEVICEID,YIELDPROC,DWORD);
|
||||
HANDLE WINAPI mciGetCreatorTask(MCIDEVICEID);
|
||||
HTASK WINAPI mciGetCreatorTask(MCIDEVICEID);
|
||||
YIELDPROC WINAPI mciGetYieldProc(MCIDEVICEID,PDWORD);
|
||||
|
||||
#ifdef _WINE
|
||||
|
|
|
@ -2126,15 +2126,6 @@ BOOLEAN WINAPI RtlIsTextUnicode(LPCVOID,INT,INT *);
|
|||
BOOLEAN WINAPI RtlIsValidHandle(const RTL_HANDLE_TABLE *, const RTL_HANDLE *);
|
||||
BOOLEAN WINAPI RtlIsValidIndexHandle(const RTL_HANDLE_TABLE *, ULONG Index, RTL_HANDLE **);
|
||||
|
||||
#ifdef _M_AMD64
|
||||
#define RtlLargeIntegerAdd(x1, x2) ((x1)+(x2))
|
||||
#define RtlLargeIntegerArithmeticShift(x, s) ((x) >> (s))
|
||||
//#define RtlLargeIntegerDivide(a,b,c,d)
|
||||
#define RtlLargeIntegerNegate(x) (-(x))
|
||||
#define RtlLargeIntegerShiftLeft(x, s) ((x)<<(s))
|
||||
#define RtlLargeIntegerShiftRight(x, s) ((x)>>(s))
|
||||
#define RtlLargeIntegerSubtract(x1, x2) ((x1)-(x2))
|
||||
#else
|
||||
LONGLONG WINAPI RtlLargeIntegerAdd(LONGLONG,LONGLONG);
|
||||
LONGLONG WINAPI RtlLargeIntegerArithmeticShift(LONGLONG,INT);
|
||||
ULONGLONG WINAPI RtlLargeIntegerDivide( ULONGLONG,ULONGLONG,ULONGLONG *);
|
||||
|
@ -2142,7 +2133,6 @@ LONGLONG WINAPI RtlLargeIntegerNegate(LONGLONG);
|
|||
LONGLONG WINAPI RtlLargeIntegerShiftLeft(LONGLONG,INT);
|
||||
LONGLONG WINAPI RtlLargeIntegerShiftRight(LONGLONG,INT);
|
||||
LONGLONG WINAPI RtlLargeIntegerSubtract(LONGLONG,LONGLONG);
|
||||
#endif
|
||||
NTSTATUS WINAPI RtlLargeIntegerToChar(const ULONGLONG *,ULONG,ULONG,PCHAR);
|
||||
NTSTATUS WINAPI RtlLeaveCriticalSection(RTL_CRITICAL_SECTION *);
|
||||
DWORD WINAPI RtlLengthRequiredSid(DWORD);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue