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
75794304
Commit
75794304
authored
Oct 11, 2009
by
Detlef Riekenberg
Committed by
Alexandre Julliard
Oct 12, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32: Add stub for EnableTrace.
parent
6648d267
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletion
+12
-1
advapi32.spec
dlls/advapi32/advapi32.spec
+1
-1
eventlog.c
dlls/advapi32/eventlog.c
+11
-0
No files found.
dlls/advapi32/advapi32.spec
View file @
75794304
...
...
@@ -200,7 +200,7 @@
@ stub ElfRegisterEventSourceW
# @ stub ElfReportEventA
@ stub ElfReportEventW
# @ stub EnableTrace
@ stdcall EnableTrace(long long long ptr double)
@ stdcall EncryptFileA(str)
@ stdcall EncryptFileW(wstr)
# @ stub EncryptedFileKeyInfo
...
...
dlls/advapi32/eventlog.c
View file @
75794304
...
...
@@ -134,6 +134,17 @@ BOOL WINAPI DeregisterEventSource( HANDLE hEventLog )
}
/******************************************************************************
* EnableTrace [ADVAPI32.@]
*/
ULONG
WINAPI
EnableTrace
(
ULONG
enable
,
ULONG
flag
,
ULONG
level
,
LPCGUID
guid
,
TRACEHANDLE
hSession
)
{
FIXME
(
"(%d, 0x%x, %d, %s, %s): stub
\n
"
,
enable
,
flag
,
level
,
debugstr_guid
(
guid
),
wine_dbgstr_longlong
(
hSession
));
return
ERROR_SUCCESS
;
}
/******************************************************************************
* GetNumberOfEventLogRecords [ADVAPI32.@]
*
* Retrieves the number of records in an event log.
...
...
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