mirror of
https://github.com/reactos/wine.git
synced 2025-02-03 10:43:30 +00:00
ntoskrnl.exe: Stub for ExInitializeZone.
This commit is contained in:
parent
afff5f9da5
commit
fc07a52148
@ -908,6 +908,19 @@ NTSTATUS WINAPI ExInitializeResourceLite(PERESOURCE Resource)
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* ExInitializeZone (NTOSKRNL.EXE.@)
|
||||
*/
|
||||
NTSTATUS WINAPI ExInitializeZone(PZONE_HEADER Zone,
|
||||
ULONG BlockSize,
|
||||
PVOID InitialSegment,
|
||||
ULONG InitialSegmentSize)
|
||||
{
|
||||
FIXME( "stub: %p, %u, %p, %u\n", Zone, BlockSize, InitialSegment, InitialSegmentSize );
|
||||
return STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* KeInitializeEvent (NTOSKRNL.EXE.@)
|
||||
*/
|
||||
|
@ -142,7 +142,7 @@
|
||||
@ stub ExInitializeNPagedLookasideList
|
||||
@ stub ExInitializePagedLookasideList
|
||||
@ stdcall ExInitializeResourceLite(ptr)
|
||||
@ stub ExInitializeZone
|
||||
@ stdcall ExInitializeZone(ptr long ptr long)
|
||||
@ stub ExInterlockedAddLargeInteger
|
||||
@ stub ExInterlockedAddUlong
|
||||
@ stub ExInterlockedDecrementLong
|
||||
|
@ -133,6 +133,7 @@ typedef struct _ERESOURCE *PERESOURCE;
|
||||
typedef struct _IO_WORKITEM *PIO_WORKITEM;
|
||||
typedef struct _OBJECT_TYPE *POBJECT_TYPE;
|
||||
typedef struct _OBJECT_HANDLE_INFORMATION *POBJECT_HANDLE_INFORMATION;
|
||||
typedef struct _ZONE_HEADER *PZONE_HEADER;
|
||||
|
||||
typedef struct _FAST_MUTEX
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user