Scroll to navigation

OleRegEnumVerbs(3w) Wine API OleRegEnumVerbs(3w)

NAME

OleRegEnumVerbs (OLE32.@)

SYNOPSIS

HRESULT OleRegEnumVerbs
(
REFCLSID clsid,
LPENUMOLEVERB* ppenum
)
 

DESCRIPTION

Enumerates verbs associated with a class stored in the registry.
 

PARAMS

clsid [In] Class Id to enumerate the verbs for.
ppenum [Out] Enumerator.
 

RETURNS

S_OK: Success. REGDB_E_CLASSNOTREG: The specified class does not have a key in the registry. REGDB_E_READREGDB: The class key could not be opened for some other reason. OLE_E_REGDB_KEY: The Verb subkey for the class is not present. OLEOBJ_E_NOVERBS: The Verb subkey for the class is empty.
 

IMPLEMENTATION

Declared in "ole2.h".
Implemented in "dlls/ole32/ole2.c".
Debug channel "ole".
Oct 2012 Wine API