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
51bdb255
Commit
51bdb255
authored
Apr 28, 2011
by
Austin English
Committed by
Alexandre Julliard
Apr 29, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32: Add ProcessTrace stub.
parent
f9a45596
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 @
51bdb255
...
...
@@ -447,7 +447,7 @@
@ stdcall PrivilegedServiceAuditAlarmA(str str long ptr long)
@ stdcall PrivilegedServiceAuditAlarmW(wstr wstr long ptr long)
# @ stub ProcessIdleTasks
# @ stub ProcessTrace
@ stdcall ProcessTrace(ptr long ptr ptr)
@ stdcall QueryAllTracesA(ptr long ptr)
@ stdcall QueryAllTracesW(ptr long ptr)
# @ stub QueryRecoveryAgentsOnEncryptedFile
...
...
dlls/advapi32/eventlog.c
View file @
51bdb255
...
...
@@ -871,3 +871,12 @@ TRACEHANDLE WINAPI OpenTraceW( PEVENT_TRACE_LOGFILEW logfile )
SetLastError
(
ERROR_ACCESS_DENIED
);
return
INVALID_PROCESSTRACE_HANDLE
;
}
/******************************************************************************
* ProcessTrace [ADVAPI32.@]
*/
ULONG
WINAPI
ProcessTrace
(
PTRACEHANDLE
HandleArray
,
ULONG
HandleCount
,
LPFILETIME
StartTime
,
LPFILETIME
EndTime
)
{
FIXME
(
"%p %u %p %p: stub
\n
"
,
HandleArray
,
HandleCount
,
StartTime
,
EndTime
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
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