mirror of
https://github.com/reactos/reactos.git
synced 2025-07-28 08:32:39 +00:00
Use W32API.
svn path=/trunk/; revision=15948
This commit is contained in:
parent
7ccf07aecc
commit
d4e71ef096
6 changed files with 12 additions and 4 deletions
|
@ -50,6 +50,7 @@ RtlCopyLuidAndAttributesArray(ULONG Count,
|
|||
}
|
||||
|
||||
|
||||
#undef RtlEqualLuid
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
|
|
|
@ -84,6 +84,7 @@ RtlCompareMemoryUlong (
|
|||
}
|
||||
|
||||
|
||||
#undef RtlFillMemory
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
|
@ -123,7 +124,7 @@ RtlFillMemoryUlong (
|
|||
}
|
||||
|
||||
|
||||
|
||||
#undef RtlMoveMemory
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
|
@ -155,6 +156,8 @@ RtlPrefetchMemoryNonTemporal(
|
|||
UNIMPLEMENTED;
|
||||
}
|
||||
|
||||
|
||||
#undef RtlZeroMemory
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
/* INCLUDES ******************************************************************/
|
||||
|
||||
#include <ddk/ntddk.h>
|
||||
#include <ddk/ntifs.h>
|
||||
#include <windows.h>
|
||||
#include <ntdll/rtl.h>
|
||||
#include <napi/teb.h>
|
||||
|
@ -20,6 +21,7 @@
|
|||
#include <ntdll/rtl.h>
|
||||
#include <rosrtl/thread.h>
|
||||
#include <winerror.h>
|
||||
#include <ntos.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#define ROUNDUP(a,b) ((((a)+(b)-1)/(b))*(b))
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
<module name="rtl" type="staticlibrary">
|
||||
<define name="__USE_W32API" />
|
||||
<define name="_NTOSKRNL_" />
|
||||
<include base="rtl">.</include>
|
||||
<directory name="i386">
|
||||
<file>allshl.s</file>
|
||||
|
|
|
@ -341,8 +341,8 @@ RtlEqualString(
|
|||
BOOLEAN
|
||||
STDCALL
|
||||
RtlEqualUnicodeString(
|
||||
IN PUNICODE_STRING String1,
|
||||
IN PUNICODE_STRING String2,
|
||||
IN CONST UNICODE_STRING *String1,
|
||||
IN CONST UNICODE_STRING *String2,
|
||||
IN BOOLEAN CaseInsensitive)
|
||||
{
|
||||
ULONG i;
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
*/
|
||||
|
||||
/* INCLUDES *****************************************************************/
|
||||
#define __USE_W32API
|
||||
|
||||
#include "rtl.h"
|
||||
|
||||
#define NDEBUG
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue