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
a60fadfa
Commit
a60fadfa
authored
Oct 20, 2014
by
Austin English
Committed by
Alexandre Julliard
Oct 21, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32: Add a stub for WmiOpenBlock.
parent
381bca49
Show 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 @
a60fadfa
...
@@ -806,7 +806,7 @@
...
@@ -806,7 +806,7 @@
# @ stub WmiMofEnumerateResourcesW
# @ stub WmiMofEnumerateResourcesW
# @ stub WmiNotificationRegistrationA
# @ stub WmiNotificationRegistrationA
# @ stub WmiNotificationRegistrationW
# @ stub WmiNotificationRegistrationW
@ st
ub WmiOpenBlock
@ st
dcall WmiOpenBlock(ptr long ptr)
# @ stub WmiOpenTraceWithCursor
# @ stub WmiOpenTraceWithCursor
# @ stub WmiParseTraceEvent
# @ stub WmiParseTraceEvent
# @ stub WmiQueryAllDataA
# @ stub WmiQueryAllDataA
...
...
dlls/advapi32/eventlog.c
View file @
a60fadfa
...
@@ -997,3 +997,12 @@ ULONG WINAPI EnumerateTraceGuids(PTRACE_GUID_PROPERTIES *propertiesarray,
...
@@ -997,3 +997,12 @@ ULONG WINAPI EnumerateTraceGuids(PTRACE_GUID_PROPERTIES *propertiesarray,
FIXME
(
"%p %d %p: stub
\n
"
,
propertiesarray
,
arraycount
,
guidcount
);
FIXME
(
"%p %d %p: stub
\n
"
,
propertiesarray
,
arraycount
,
guidcount
);
return
ERROR_INVALID_PARAMETER
;
return
ERROR_INVALID_PARAMETER
;
}
}
/******************************************************************************
* WmiOpenBlock [ADVAPI32.@]
*/
NTSTATUS
WINAPI
WmiOpenBlock
(
GUID
*
guid
,
ULONG
access
,
PVOID
*
datablock
)
{
FIXME
(
"%s %d %p: stub
\n
"
,
debugstr_guid
(
guid
),
access
,
datablock
);
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