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
01e53858
Commit
01e53858
authored
May 16, 2015
by
Olivier F. R. Dierick
Committed by
Alexandre Julliard
Jun 15, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Implement SetFileCompletionNotificationModes as a stub.
parent
95649404
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
2 deletions
+13
-2
api-ms-win-core-kernel32-legacy-l1-1-0.spec
...legacy-l1-1-0/api-ms-win-core-kernel32-legacy-l1-1-0.spec
+1
-1
file.c
dlls/kernel32/file.c
+10
-0
kernel32.spec
dlls/kernel32/kernel32.spec
+1
-1
winbase.h
include/winbase.h
+1
-0
No files found.
dlls/api-ms-win-core-kernel32-legacy-l1-1-0/api-ms-win-core-kernel32-legacy-l1-1-0.spec
View file @
01e53858
...
...
@@ -45,7 +45,7 @@
@ stub RaiseFailFastException
@ stdcall RegisterWaitForSingleObject(ptr long ptr ptr long long) kernel32.RegisterWaitForSingleObject
@ stdcall SetConsoleTitleA(str) kernel32.SetConsoleTitleA
@ st
ub
SetFileCompletionNotificationModes
@ st
dcall SetFileCompletionNotificationModes(long long) kernel32.
SetFileCompletionNotificationModes
@ stdcall SetHandleCount(long) kernel32.SetHandleCount
@ stdcall SetMailslotInfo(long long) kernel32.SetMailslotInfo
@ stdcall SetVolumeLabelW(wstr wstr) kernel32.SetVolumeLabelW
...
...
dlls/kernel32/file.c
View file @
01e53858
...
...
@@ -1040,6 +1040,16 @@ BOOL WINAPI SetEndOfFile( HANDLE hFile )
return
FALSE
;
}
/**************************************************************************
* SetFileCompletionNotificationModes (KERNEL32.@)
*/
BOOL
WINAPI
SetFileCompletionNotificationModes
(
HANDLE
handle
,
UCHAR
flags
)
{
FIXME
(
"%p %x - stub
\n
"
,
handle
,
flags
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/***********************************************************************
* SetFileInformationByHandle (KERNEL32.@)
...
...
dlls/kernel32/kernel32.spec
View file @
01e53858
...
...
@@ -1393,7 +1393,7 @@
# @ stub SetFileAttributesTransactedW
@ stdcall SetFileAttributesW(wstr long)
# @ stub SetFileBandwidthReservation
# @ stub SetFileCompletionNotificationModes
@ stdcall SetFileCompletionNotificationModes(long long)
@ stdcall SetFileInformationByHandle(long long ptr long)
# @ stub SetFileIoOverlappedRange
@ stdcall SetFilePointer(long long ptr long)
...
...
include/winbase.h
View file @
01e53858
...
...
@@ -2460,6 +2460,7 @@ WINBASEAPI VOID WINAPI SetFileApisToOEM(void);
WINBASEAPI
BOOL
WINAPI
SetFileAttributesA
(
LPCSTR
,
DWORD
);
WINBASEAPI
BOOL
WINAPI
SetFileAttributesW
(
LPCWSTR
,
DWORD
);
#define SetFileAttributes WINELIB_NAME_AW(SetFileAttributes)
WINBASEAPI
BOOL
WINAPI
SetFileCompletionNotificationModes
(
HANDLE
,
UCHAR
);
WINBASEAPI
BOOL
WINAPI
SetFileInformationByHandle
(
HANDLE
,
FILE_INFO_BY_HANDLE_CLASS
,
LPVOID
,
DWORD
);
WINBASEAPI
DWORD
WINAPI
SetFilePointer
(
HANDLE
,
LONG
,
LPLONG
,
DWORD
);
WINBASEAPI
BOOL
WINAPI
SetFilePointerEx
(
HANDLE
,
LARGE_INTEGER
,
LARGE_INTEGER
*
,
DWORD
);
...
...
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