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
03d22add
Commit
03d22add
authored
Jan 25, 2017
by
Andrey Gusev
Committed by
Alexandre Julliard
Jan 26, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Move UnregisterTraceGuids from advapi32 to ntdll.
Signed-off-by:
Andrey Gusev
<
andrey.goosev@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
178400b2
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
15 deletions
+14
-15
advapi32.spec
dlls/advapi32/advapi32.spec
+1
-1
eventlog.c
dlls/advapi32/eventlog.c
+0
-14
misc.c
dlls/ntdll/misc.c
+12
-0
ntdll.spec
dlls/ntdll/ntdll.spec
+1
-0
No files found.
dlls/advapi32/advapi32.spec
View file @
03d22add
...
...
@@ -783,7 +783,7 @@
# @ stub UninstallApplication
@ stdcall UnlockServiceDatabase (ptr)
# @ stub UnregisterIdleTask
@ stdcall UnregisterTraceGuids(int64)
@ stdcall UnregisterTraceGuids(int64)
ntdll.EtwUnregisterTraceGuids
@ stub UpdateTraceA
@ stub UpdateTraceW
# @ stub UsePinForEncryptedFilesA
...
...
dlls/advapi32/eventlog.c
View file @
03d22add
...
...
@@ -815,20 +815,6 @@ ULONG WINAPI TraceEvent( TRACEHANDLE SessionHandle, PEVENT_TRACE_HEADER EventTra
}
/******************************************************************************
* UnregisterTraceGuids [ADVAPI32.@]
*
* See RegisterTraceGuids
*
* FIXME
* Stub.
*/
ULONG
WINAPI
UnregisterTraceGuids
(
TRACEHANDLE
RegistrationHandle
)
{
FIXME
(
"%s: stub
\n
"
,
wine_dbgstr_longlong
(
RegistrationHandle
));
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
/******************************************************************************
* EventEnabled [ADVAPI32.@]
*
*/
...
...
dlls/ntdll/misc.c
View file @
03d22add
...
...
@@ -445,3 +445,15 @@ ULONG WINAPI EtwRegisterTraceGuidsA( WMIDPREQUEST RequestAddress,
debugstr_a
(
MofResourceName
),
RegistrationHandle
);
return
ERROR_SUCCESS
;
}
/******************************************************************************
* EtwUnregisterTraceGuids (NTDLL.@)
*/
ULONG
WINAPI
EtwUnregisterTraceGuids
(
TRACEHANDLE
RegistrationHandle
)
{
if
(
!
RegistrationHandle
)
return
ERROR_INVALID_PARAMETER
;
FIXME
(
"%s: stub
\n
"
,
wine_dbgstr_longlong
(
RegistrationHandle
));
return
ERROR_SUCCESS
;
}
dlls/ntdll/ntdll.spec
View file @
03d22add
...
...
@@ -46,6 +46,7 @@
@ stdcall EtwEventUnregister(int64)
@ stdcall EtwRegisterTraceGuidsA(ptr ptr ptr long ptr str str ptr)
@ stdcall EtwRegisterTraceGuidsW(ptr ptr ptr long ptr wstr wstr ptr)
@ stdcall EtwUnregisterTraceGuids(int64)
# @ stub KiFastSystemCall
# @ stub KiFastSystemCallRet
# @ stub KiIntSystemCall
...
...
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