CePimCommand

This function is not supported in Windows CE Platform Builder 3.0.

Pocket Outlook calls this function to create a menu add-in on the Tools menu in the Contacts, Calendar, or Tasks applications. The DLL that supports the menu add-in must define and expose this function.

void CePimCommand(HWND hWnd, PIMTYPE ptData, UINT uDataCount, HANDLE * rghData, void * pReserved);

Parameters

  • hWnd
    [in] Application window handle.

  • ptData
    [in] The application calling this function. The definition for this enumeration follows:

    typedef enum tagPIMTYPE
    {
    PT_CALENDAR = 0,
    PT_TASKS,
    PT_CONTACT
    } PIMTYPE;
    

    For the Palm-sized PC 1.2 only, the constants are ordered differently:

    typedef enum tagPIMTYPE
    {
    PT_CONTACT = 0,
    PT_CALENDAR,
    PT_TASKS
    } PIMTYPE;
    
  • uDataCount
    [in] The number of items that are in the array rghData.

  • rghData
    [in] An array of Windows CE object identifiers (OIDs) for the currently selected items in the Pocket Outlook application. You can use the OIDs to get the selected items with the GetItemFromOid method of the Pocket Outlook Application object.

  • pReserved
    [in] A reserved parameter (currently NULL).

Requirements

Runs On Versions Defined in Include Link to
Windows CE OS 2.0 and later pimstore.h    

 Last updated on Tuesday, July 13, 2004

© 1992-2000 Microsoft Corporation. All rights reserved.