Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
A version of this page is also available for
4/8/2010

The GetItemFromOidmethod retrieves the item specified by a Windows Embedded CE object identifier (OID).

Syntax

HRESULT GetItemFromOid(
  long 
oid,
  IDispatch ** 
ppolItem
);

Parameters

oid

[in] Identifier of the item to be retrieved. This OID might have been retrieved by replication services or from a call to an add-in.

ppolItem

[out] Reference to the retrieved item. For information on IDispatch, see IDispatch.

Return Value

This method returns the standard values E_INVALIDARG, E_OUTOFMEMORY, E_UNEXPECTED, and E_FAIL, as well as the following:

S_OK

The method completed successfully.

Remarks

To ensure that your Calendar menu extension does not fail during the call to IPOutlookApp::GetItemFromOid, use IUnknown::AddRefand IUnknown::Releaseso your extension objects are not inadvertently freed by another process.

The function CePimCommandhas been deprecated and is no longer used for creating Outlook Mobile menu add-ins. Use the function IContextMenuinstead. For more information on adding menus and new menu options to existing context-sensitive shortcut menus, see Developing Menu Components.

Requirements

Header pimstore.h
Library Pimstore.lib
Windows Embedded CE Windows CE 3.0 and later
Windows Mobile Pocket PC 2000 and later, Smartphone 2002 and later

See Also