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
8781b58e
Commit
8781b58e
authored
May 10, 2011
by
Austin English
Committed by
Alexandre Julliard
May 13, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32: Return success in RegisterTraceGuids.
parent
96c99dc9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
eventlog.c
dlls/advapi32/eventlog.c
+4
-4
No files found.
dlls/advapi32/eventlog.c
View file @
8781b58e
...
@@ -750,10 +750,10 @@ ULONG WINAPI RegisterTraceGuidsW( WMIDPREQUEST RequestAddress,
...
@@ -750,10 +750,10 @@ ULONG WINAPI RegisterTraceGuidsW( WMIDPREQUEST RequestAddress,
PTRACE_GUID_REGISTRATION
TraceGuidReg
,
LPCWSTR
MofImagePath
,
PTRACE_GUID_REGISTRATION
TraceGuidReg
,
LPCWSTR
MofImagePath
,
LPCWSTR
MofResourceName
,
PTRACEHANDLE
RegistrationHandle
)
LPCWSTR
MofResourceName
,
PTRACEHANDLE
RegistrationHandle
)
{
{
FIXME
(
"(%p, %p, %s, %u, %p, %s, %s, %p,)
\n
"
,
RequestAddress
,
RequestContext
,
FIXME
(
"(%p, %p, %s, %u, %p, %s, %s, %p,)
: stub
\n
"
,
RequestAddress
,
RequestContext
,
debugstr_guid
(
ControlGuid
),
GuidCount
,
TraceGuidReg
,
debugstr_w
(
MofImagePath
),
debugstr_guid
(
ControlGuid
),
GuidCount
,
TraceGuidReg
,
debugstr_w
(
MofImagePath
),
debugstr_w
(
MofResourceName
),
RegistrationHandle
);
debugstr_w
(
MofResourceName
),
RegistrationHandle
);
return
ERROR_
CALL_NOT_IMPLEMENTED
;
return
ERROR_
SUCCESS
;
}
}
/******************************************************************************
/******************************************************************************
...
@@ -769,10 +769,10 @@ ULONG WINAPI RegisterTraceGuidsA( WMIDPREQUEST RequestAddress,
...
@@ -769,10 +769,10 @@ ULONG WINAPI RegisterTraceGuidsA( WMIDPREQUEST RequestAddress,
PTRACE_GUID_REGISTRATION
TraceGuidReg
,
LPCSTR
MofImagePath
,
PTRACE_GUID_REGISTRATION
TraceGuidReg
,
LPCSTR
MofImagePath
,
LPCSTR
MofResourceName
,
PTRACEHANDLE
RegistrationHandle
)
LPCSTR
MofResourceName
,
PTRACEHANDLE
RegistrationHandle
)
{
{
FIXME
(
"(%p, %p, %s, %u, %p, %s, %s, %p,)
\n
"
,
RequestAddress
,
RequestContext
,
FIXME
(
"(%p, %p, %s, %u, %p, %s, %s, %p,)
: stub
\n
"
,
RequestAddress
,
RequestContext
,
debugstr_guid
(
ControlGuid
),
GuidCount
,
TraceGuidReg
,
debugstr_a
(
MofImagePath
),
debugstr_guid
(
ControlGuid
),
GuidCount
,
TraceGuidReg
,
debugstr_a
(
MofImagePath
),
debugstr_a
(
MofResourceName
),
RegistrationHandle
);
debugstr_a
(
MofResourceName
),
RegistrationHandle
);
return
ERROR_
CALL_NOT_IMPLEMENTED
;
return
ERROR_
SUCCESS
;
}
}
/******************************************************************************
/******************************************************************************
...
...
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