mirror of
https://github.com/reactos/wine.git
synced 2024-12-11 21:36:20 +00:00
advapi32: Add a stub for WmiOpenBlock.
This commit is contained in:
parent
381bca49e0
commit
a60fadfad2
@ -806,7 +806,7 @@
|
||||
# @ stub WmiMofEnumerateResourcesW
|
||||
# @ stub WmiNotificationRegistrationA
|
||||
# @ stub WmiNotificationRegistrationW
|
||||
@ stub WmiOpenBlock
|
||||
@ stdcall WmiOpenBlock(ptr long ptr)
|
||||
# @ stub WmiOpenTraceWithCursor
|
||||
# @ stub WmiParseTraceEvent
|
||||
# @ stub WmiQueryAllDataA
|
||||
|
@ -997,3 +997,12 @@ ULONG WINAPI EnumerateTraceGuids(PTRACE_GUID_PROPERTIES *propertiesarray,
|
||||
FIXME("%p %d %p: stub\n", propertiesarray, arraycount, guidcount);
|
||||
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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user