Added stub implementations for NtDeleteFile and NtCancelIoFile.

This commit is contained in:
Mike McCormack 2004-08-27 19:11:01 +00:00 committed by Alexandre Julliard
parent ab4b5fbd70
commit 03425cb09d
2 changed files with 25 additions and 2 deletions

View File

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

View File

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