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
4351b37d
Commit
4351b37d
authored
Mar 05, 2009
by
Vincent Povirk
Committed by
Alexandre Julliard
Mar 06, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32: Stub TraceEvent.
parent
93911d78
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
advapi32.spec
dlls/advapi32/advapi32.spec
+1
-1
eventlog.c
dlls/advapi32/eventlog.c
+9
-0
No files found.
dlls/advapi32/advapi32.spec
View file @
4351b37d
...
@@ -635,7 +635,7 @@
...
@@ -635,7 +635,7 @@
@ stdcall SystemFunction036(ptr long) # RtlGenRandom
@ stdcall SystemFunction036(ptr long) # RtlGenRandom
@ stdcall SystemFunction040(ptr long long) # RtlEncryptMemory
@ stdcall SystemFunction040(ptr long long) # RtlEncryptMemory
@ stdcall SystemFunction041(ptr long long) # RtlDecryptMemory
@ stdcall SystemFunction041(ptr long long) # RtlDecryptMemory
@ st
ub TraceEvent
@ st
dcall TraceEvent(double ptr)
@ stub TraceEventInstance
@ stub TraceEventInstance
@ stub TraceMessage
@ stub TraceMessage
@ stub TraceMessageVa
@ stub TraceMessageVa
...
...
dlls/advapi32/eventlog.c
View file @
4351b37d
...
@@ -492,6 +492,15 @@ ULONG WINAPI RegisterTraceGuidsA( WMIDPREQUEST RequestAddress,
...
@@ -492,6 +492,15 @@ ULONG WINAPI RegisterTraceGuidsA( WMIDPREQUEST RequestAddress,
}
}
/******************************************************************************
/******************************************************************************
* TraceEvent [ADVAPI32.@]
*/
ULONG
WINAPI
TraceEvent
(
TRACEHANDLE
SessionHandle
,
PEVENT_TRACE_HEADER
EventTrace
)
{
FIXME
(
"%s %p
\n
"
,
wine_dbgstr_longlong
(
SessionHandle
),
EventTrace
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
/******************************************************************************
* UnregisterTraceGuids [ADVAPI32.@]
* UnregisterTraceGuids [ADVAPI32.@]
*
*
* See RegisterTraceGuids
* See RegisterTraceGuids
...
...
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