Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
03425cb0
Commit
03425cb0
authored
Aug 27, 2004
by
Mike McCormack
Committed by
Alexandre Julliard
Aug 27, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added stub implementations for NtDeleteFile and NtCancelIoFile.
parent
ab4b5fbd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
2 deletions
+25
-2
file.c
dlls/ntdll/file.c
+23
-0
ntdll.spec
dlls/ntdll/ntdll.spec
+2
-2
No files found.
dlls/ntdll/file.c
View file @
03425cb0
...
...
@@ -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
;
}
dlls/ntdll/ntdll.spec
View file @
03425cb0
...
...
@@ -74,7 +74,7 @@
@ stdcall NtAllocateUuids(ptr ptr ptr)
@ stdcall NtAllocateVirtualMemory(long ptr ptr ptr long long)
@ stub NtCallbackReturn
@ st
ub NtCancelIoFile
@ st
dcall 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)
@ st
ub NtDeleteFile
@ st
dcall NtDeleteFile(ptr)
@ stdcall NtDeleteKey(long)
@ stdcall NtDeleteValueKey(long ptr)
@ stdcall NtDeviceIoControlFile(long long long long long long long long long long)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment