wshom.ocx: Correct out parameter for _NewEnum.
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
c583c4afaa
commit
46dcaa5b93
|
@ -698,7 +698,7 @@ static HRESULT WINAPI WshCollection_get_length(IWshCollection *iface, LONG *coun
|
|||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI WshCollection__NewEnum(IWshCollection *iface, IUnknown *Enum)
|
||||
static HRESULT WINAPI WshCollection__NewEnum(IWshCollection *iface, IUnknown **Enum)
|
||||
{
|
||||
WshCollection *This = impl_from_IWshCollection(iface);
|
||||
FIXME("(%p)->(%p): stub\n", This, Enum);
|
||||
|
|
|
@ -383,7 +383,7 @@ library IWshRuntimeLibrary
|
|||
HRESULT length([out, retval] long *out_Count);
|
||||
|
||||
[id(DISPID_NEWENUM)]
|
||||
HRESULT _NewEnum([out, retval] IUnknown *out_Enum);
|
||||
HRESULT _NewEnum([out, retval] IUnknown **out_Enum);
|
||||
}
|
||||
|
||||
[
|
||||
|
|
|
@ -383,7 +383,7 @@ library IWshRuntimeLibrary
|
|||
HRESULT length([out, retval] long *out_Count);
|
||||
|
||||
[id(DISPID_NEWENUM)]
|
||||
HRESULT _NewEnum([out, retval] IUnknown *out_Enum);
|
||||
HRESULT _NewEnum([out, retval] IUnknown **out_Enum);
|
||||
}
|
||||
|
||||
[
|
||||
|
|
Loading…
Reference in New Issue