Use W32API.

svn path=/trunk/; revision=15948
This commit is contained in:
Filip Navara 2005-06-17 07:57:37 +00:00
parent 7ccf07aecc
commit d4e71ef096
6 changed files with 12 additions and 4 deletions

View file

@ -50,6 +50,7 @@ RtlCopyLuidAndAttributesArray(ULONG Count,
}
#undef RtlEqualLuid
/*
* @implemented
*/

View file

@ -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
*/

View file

@ -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))

View file

@ -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>

View 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;

View file

@ -29,7 +29,7 @@
*/
/* INCLUDES *****************************************************************/
#define __USE_W32API
#include "rtl.h"
#define NDEBUG