[PATCH v4 2/2] ieframe: Add stub implementation of InternetExplorerManager.

Jacek Caban jacek at codeweavers.com
Fri Sep 15 06:56:58 CDT 2017


On 15.09.2017 07:43, Zebediah Figura wrote:
> +HRESULT WINAPI InternetExplorerManager_Create(IClassFactory *iface, IUnknown *pOuter, REFIID riid, void **ppv)
> +{
> +    InternetExplorerManager *ret;
> +    HRESULT hr;
> +
> +    TRACE("(%p %s %p)\n", pOuter, debugstr_guid(riid), ppv);
> +
> +    if (!(ret = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*ret))))
> +        return E_OUTOFMEMORY;
> +
> +    ret->IInternetExplorerManager_iface.lpVtbl = &InternetExplorerManager_vtbl;
> +    ret->ref = 1;
> +
> +    hr = IInternetExplorerManager_QueryInterface(&ret->IInternetExplorerManager_iface, riid, ppv);
> +    IInternetExplorerManager_Release(&ret->IInternetExplorerManager_iface);
> +
> +    return hres;


That doesn't compile.


Jacek




More information about the wine-devel mailing list