Commit de94cfd7 authored by Vitaliy Margolen's avatar Vitaliy Margolen Committed by Alexandre Julliard

ntdll: Stub NtMakeTemporaryObject.

parent 7926eba0
......@@ -195,7 +195,7 @@
# @ stub NtLockRegistryKey
@ stdcall NtLockVirtualMemory(long ptr ptr long)
# @ stub NtMakePermanentObject
@ stub NtMakeTemporaryObject
@ stdcall NtMakeTemporaryObject(long)
# @ stub NtMapUserPhysicalPages
# @ stub NtMapUserPhysicalPagesScatter
@ stdcall NtMapViewOfSection(long long ptr long long ptr ptr long long long)
......@@ -1039,7 +1039,7 @@
# @ stub ZwLockRegistryKey
@ stdcall ZwLockVirtualMemory(long ptr ptr long) NtLockVirtualMemory
# @ stub ZwMakePermanentObject
@ stub ZwMakeTemporaryObject
@ stdcall ZwMakeTemporaryObject(long) NtMakeTemporaryObject
# @ stub ZwMapUserPhysicalPages
# @ stub ZwMapUserPhysicalPagesScatter
@ stdcall ZwMapViewOfSection(long long ptr long long ptr ptr long long long) NtMapViewOfSection
......
......@@ -616,3 +616,22 @@ NTSTATUS WINAPI NtAllocateUuids(
FIXME("(%p,%p,%p), stub.\n", Time, Range, Sequence);
return 0;
}
/**************************************************************************
* NtMakeTemporaryObject [NTDLL.@]
* ZwMakeTemporaryObject [NTDLL.@]
*
* Make a permanent object temporary.
*
* PARAMS
* Handle [I] handle to permanent object
*
* RETURNS
* Success: STATUS_SUCCESS.
* Failure: An NTSTATUS error code.
*/
NTSTATUS WINAPI NtMakeTemporaryObject( HANDLE Handle )
{
FIXME("(%p), stub.\n", Handle);
return STATUS_SUCCESS;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment