Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
f8318158
Commit
f8318158
authored
Sep 12, 2022
by
Paul Gofman
Committed by
Alexandre Julliard
Sep 13, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32: Add stub for PerfCloseQueryHandle().
parent
7fef7470
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
1 deletion
+11
-1
advapi.c
dlls/advapi32/advapi.c
+8
-0
advapi32.spec
dlls/advapi32/advapi32.spec
+1
-1
perflib.h
include/perflib.h
+2
-0
No files found.
dlls/advapi32/advapi.c
View file @
f8318158
...
...
@@ -31,6 +31,7 @@
#include "winerror.h"
#include "wincred.h"
#include "wct.h"
#include "perflib.h"
#include "wine/debug.h"
...
...
@@ -313,3 +314,10 @@ BOOL WINAPI GetThreadWaitChain(HWCT handle, DWORD_PTR ctx, DWORD flags, DWORD th
SetLastError
(
ERROR_NOT_SUPPORTED
);
return
FALSE
;
}
ULONG
WINAPI
PerfCloseQueryHandle
(
HANDLE
query
)
{
FIXME
(
"query %p stub.
\n
"
,
query
);
return
ERROR_SUCCESS
;
}
dlls/advapi32/advapi32.spec
View file @
f8318158
...
...
@@ -554,7 +554,7 @@
# @ stub OperationEnd
# @ stub OperationStart
# @ stub PerfAddCounters
# @ stub PerfCloseQueryHandle
@ stdcall PerfCloseQueryHandle(long)
@ stdcall -import PerfCreateInstance(long ptr wstr long)
# @ stub PerfDecrementULongCounterValue
# @ stub PerfDecrementULongLongCounterValue
...
...
include/perflib.h
View file @
f8318158
...
...
@@ -89,6 +89,8 @@ ULONG WINAPI PerfStartProvider(GUID *, PERFLIBREQUEST, HANDLE *);
ULONG
WINAPI
PerfStartProviderEx
(
GUID
*
,
PERF_PROVIDER_CONTEXT
*
,
HANDLE
*
);
ULONG
WINAPI
PerfStopProvider
(
HANDLE
);
ULONG
WINAPI
PerfCloseQueryHandle
(
HANDLE
);
#ifdef __cplusplus
}
/* extern "C" */
#endif
...
...
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