NAME

DllGetClassObject  (URLMON.@)

SYNOPSIS

 HRESULT DllGetClassObject
 (
  REFCLSID rclsid,
  REFIID   riid,
  LPVOID*  ppv
 )

DESCRIPTION

Retrieves class object from a dll object.

NOTES

Docs say returns STDAPI.

PARAMS

rclsid [In] CLSID for the class object.
riid [In] Reference to identifier of interface for class object.
ppv [Out] Address of variable to receive interface pointer for riid.

RETURNS

Success: S_OK

Failure: CLASS_E_CLASSNOTAVAILABLE, E_OUTOFMEMORY, E_INVALIDARG, E_UNEXPECTED

IMPLEMENTATION

Declared in "objbase.h". https://source.winehq.org/source/include/objbase.h

Implemented in "dlls/urlmon/urlmon_main.c". https://source.winehq.org/source/dlls/urlmon/urlmon_main.c

Debug channel "urlmon".


Copyright © 2024 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated May 2024.