Scroll to navigation

LoadRegTypeLib(3w) Wine API LoadRegTypeLib(3w)

NAME

LoadRegTypeLib (OLEAUT32.162)

SYNOPSIS

HRESULT LoadRegTypeLib
(
REFGUID rguid,
WORD wVerMajor,
WORD wVerMinor,
LCID lcid,
ITypeLib** ppTLib
)
 

DESCRIPTION

Loads a registered type library.
 

PARAMS

rguid [In] GUID of the registered type library.
wVerMajor [In] major version.
wVerMinor [In] minor version.
lcid [In] locale ID.
ppTLib [Out] pointer that receives an ITypeLib object on success.
 

RETURNS

Success: S_OK.
Failure: Any HRESULT code returned from QueryPathOfRegTypeLib or LoadTypeLib.
 

IMPLEMENTATION

Declared in "oleauto.h".
Implemented in "dlls/oleaut32/typelib.c".
Debug channel "ole".
Oct 2012 Wine API