Skip to content

Latest commit

 

History

History
139 lines (110 loc) · 4.97 KB

nf-ole2-oleregenumformatetc.md

File metadata and controls

139 lines (110 loc) · 4.97 KB
UID title description helpviewer_keywords old-location tech.root ms.assetid ms.date ms.keywords req.header req.include-header req.target-type req.target-min-winverclnt req.target-min-winversvr req.kmdf-ver req.umdf-ver req.ddi-compliance req.unicode-ansi req.idl req.max-support req.namespace req.assembly req.type-library req.lib req.dll req.irql targetos req.typenames req.redist ms.custom f1_keywords dev_langs topic_type api_type api_location api_name
NF:ole2.OleRegEnumFormatEtc
OleRegEnumFormatEtc function (ole2.h)
Creates an enumeration object that can be used to enumerate data formats that an OLE object server has registered in the system registry.
OleRegEnumFormatEtc
OleRegEnumFormatEtc function [COM]
_ole_OleRegEnumFormatEtc
com.oleregenumformatetc
ole2/OleRegEnumFormatEtc
com\oleregenumformatetc.htm
com
6caebc68-a136-40f2-92d8-7f8003c18e5c
12/05/2018
OleRegEnumFormatEtc, OleRegEnumFormatEtc function [COM], _ole_OleRegEnumFormatEtc, com.oleregenumformatetc, ole2/OleRegEnumFormatEtc
ole2.h
Windows
Windows 2000 Professional [desktop apps only]
Windows 2000 Server [desktop apps only]
Ole32.lib
Ole32.dll
Windows
19H1
OleRegEnumFormatEtc
ole2/OleRegEnumFormatEtc
c++
APIRef
kbSyntax
DllExport
Ole32.dll
OleRegEnumFormatEtc

OleRegEnumFormatEtc function

-description

Creates an enumeration object that can be used to enumerate data formats that an OLE object server has registered in the system registry. An object application or object handler calls this function when it must enumerate those formats. Developers of custom DLL object applications use this function to emulate the behavior of the default object handler.

-parameters

-param clsid [in]

CLSID of the class whose formats are being requested.

-param dwDirection [in]

Indicates whether to enumerate formats that can be passed to IDataObject::GetData or formats that can be passed to IDataObject::SetData. Possible values are taken from the enumeration DATADIR.

-param ppenum [out]

Address of IEnumFORMATETC pointer variable that receives the interface pointer to the enumeration object.

-returns

This function returns S_OK on success. Other possible values include the following.

Return code Description
E_OUTOFMEMORY
Insufficient memory for the operation.
REGDB_E_CLASSNOTREG
There is no CLSID registered for the class object.
REGDB_E_READREGDB
There was an error reading the registry.
OLE_E_REGDB_KEY
The DataFormats/GetSet key is missing from the registry.

-remarks

Object applications can ask OLE to create an enumeration object for FORMATETC structures to enumerate supported data formats in one of two ways. One way is to call OleRegEnumFormatEtc. The other is to return OLE_S_USEREG in response to calls by the default object handler to IDataObject::EnumFormatEtc. OLE_S_USEREG instructs the default handler to call OleRegEnumFormatEtc. Because DLL object applications cannot return OLE_S_USEREG, they must call OleRegEnumFormatEtc rather than delegating the job to the object handler. With the supplied IEnumFORMATETC pointer to the object, you can call the standard enumeration object methods to do the enumeration.

The OleRegEnumFormatEtc function and its sibling functions, OleRegGetUserType, OleRegGetMiscStatus, and OleRegEnumVerbs, provide a way for developers of custom DLL object applications to emulate the behavior of OLE's default object handler in getting information about objects from the registry. By using these functions, you avoid the considerable work of writing your own, and the pitfalls inherent in working directly in the registry. In addition, you get future enhancements and optimizations of these functions without having to code them yourself.

-see-also

IDataObject::EnumFormatEtc

IEnumFORMATETC