Share via


FOLDERNODE

The FOLDERNODE structure describes an e-mail folder node.

Syntax

typedef struct _FOLDERNODE {
  _FOLDERNODE * pSibbling;
  _FOLDERNODE * pChild;
  _FOLDERNODE * pParent;
  DWORD ffFlags;
  LPWSTR szName;
} FOLDERNODE;

Members

  • pSibbling
    Pointer to the sibling node.

  • pChild
    Pointer to the child node.

  • pParent
    Pointer to the parent node.

  • ffFlags
    Indicates the special folders listed in the following table.

    Constant Value
    FOLDER_HIDE 0x00010000
    FOLDER_SPECIAL 0x00020000
    FOLDER_INBOX 0x00040000
    FOLDER_DELETED_ITEMS 0x00080000
    FOLDER_SENT_ITEMS 0x00100000
    FOLDER_OUTBOX 0x00200000
    FOLDER_DRAFTS 0x00400000
    FOLDER_IPM 0x00800000
  • szName
    The name of the folder pointed to by FOLDERNODE

Requirements

Pocket PC: Windows Mobile 2002 and later
OS Versions: Windows CE 3.0 and later
Header: cemapi.h

See Also

MAPI Structures

Messaging

Send feedback on this topic to the authors.

© 2005 Microsoft Corporation. All rights reserved.