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
6e62dc8e
Commit
6e62dc8e
authored
Feb 22, 2011
by
André Hentschel
Committed by
Alexandre Julliard
Feb 23, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32: Add stub for EnableTraceEx.
parent
3c239fa0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
0 deletions
+16
-0
advapi32.spec
dlls/advapi32/advapi32.spec
+1
-0
eventlog.c
dlls/advapi32/eventlog.c
+15
-0
No files found.
dlls/advapi32/advapi32.spec
View file @
6e62dc8e
...
...
@@ -201,6 +201,7 @@
# @ stub ElfReportEventA
@ stub ElfReportEventW
@ stdcall EnableTrace(long long long ptr int64)
@ stdcall EnableTraceEx(ptr ptr int64 long long int64 int64 long ptr)
@ stdcall EncryptFileA(str)
@ stdcall EncryptFileW(wstr)
# @ stub EncryptedFileKeyInfo
...
...
dlls/advapi32/eventlog.c
View file @
6e62dc8e
...
...
@@ -235,6 +235,21 @@ BOOL WINAPI DeregisterEventSource( HANDLE hEventLog )
}
/******************************************************************************
* EnableTraceEx [ADVAPI32.@]
*/
ULONG
WINAPI
EnableTraceEx
(
LPCGUID
provider
,
LPCGUID
source
,
TRACEHANDLE
hSession
,
ULONG
enable
,
UCHAR
level
,
ULONGLONG
anykeyword
,
ULONGLONG
allkeyword
,
ULONG
enableprop
,
PEVENT_FILTER_DESCRIPTOR
filterdesc
)
{
FIXME
(
"(%s, %s, %s, %d, %c, %s, %s, %d, %p): stub
\n
"
,
debugstr_guid
(
provider
),
debugstr_guid
(
source
),
wine_dbgstr_longlong
(
hSession
),
enable
,
level
,
wine_dbgstr_longlong
(
anykeyword
),
wine_dbgstr_longlong
(
allkeyword
),
enableprop
,
filterdesc
);
return
ERROR_SUCCESS
;
}
/******************************************************************************
* EnableTrace [ADVAPI32.@]
*/
ULONG
WINAPI
EnableTrace
(
ULONG
enable
,
ULONG
flag
,
ULONG
level
,
LPCGUID
guid
,
TRACEHANDLE
hSession
)
...
...
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