Commit 612f380a authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

include: Fix the definition of IWbemClassObject::GetNames.

parent e7a4fb15
......@@ -312,7 +312,7 @@ static HRESULT WINAPI class_object_GetNames(
LPCWSTR wszQualifierName,
LONG lFlags,
VARIANT *pQualifierVal,
SAFEARRAY *pNames )
SAFEARRAY **pNames )
{
FIXME("%p, %s, %08x, %p, %p\n", iface, debugstr_w(wszQualifierName), lFlags, pQualifierVal, pNames);
return E_NOTIMPL;
......
......@@ -476,7 +476,7 @@ interface IWbemClassObject : IUnknown
[in,string] LPCWSTR wszQualifierName,
[in] long lFlags,
[in] VARIANT *pQualifierVal,
[out] SAFEARRAY *pNames);
[out] SAFEARRAY **pNames);
HRESULT BeginEnumeration(
[in] long lEnumFlags);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment