Commit 03425cb0 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

Added stub implementations for NtDeleteFile and NtCancelIoFile.

parent ab4b5fbd
......@@ -1623,3 +1623,26 @@ NTSTATUS WINAPI NtCreateNamedPipeFile( PHANDLE FileHandle, ULONG DesiredAccess,
OutboundQuota, DefaultTimeout);
return STATUS_NOT_IMPLEMENTED;
}
/******************************************************************
* NtDeleteFile (NTDLL.@)
*
*
*/
NTSTATUS WINAPI NtDeleteFile( POBJECT_ATTRIBUTES ObjectAttributes )
{
FIXME("%p\n", ObjectAttributes);
return STATUS_NOT_IMPLEMENTED;
}
/******************************************************************
* NtCancelIoFile (NTDLL.@)
*
*
*/
NTSTATUS WINAPI NtCancelIoFile( HANDLE FileHandle,
PIO_STATUS_BLOCK IoStatusBlock)
{
FIXME("%p %p\n", FileHandle, IoStatusBlock );
return STATUS_NOT_IMPLEMENTED;
}
......@@ -74,7 +74,7 @@
@ stdcall NtAllocateUuids(ptr ptr ptr)
@ stdcall NtAllocateVirtualMemory(long ptr ptr ptr long long)
@ stub NtCallbackReturn
@ stub NtCancelIoFile
@ stdcall NtCancelIoFile(long ptr)
@ stdcall NtCancelTimer(long ptr)
@ stdcall NtClearEvent(long)
@ stdcall NtClose(long)
......@@ -103,7 +103,7 @@
@ stub NtCreateToken
@ stdcall NtCurrentTeb()
@ stdcall NtDelayExecution(long ptr)
@ stub NtDeleteFile
@ stdcall NtDeleteFile(ptr)
@ stdcall NtDeleteKey(long)
@ stdcall NtDeleteValueKey(long ptr)
@ stdcall NtDeviceIoControlFile(long long long long long long long long long long)
......
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