Share via


CE_NOTIFICATION_INFO_HEADER

This structure contains information about notification events.

typedef struct UserNotificationInfoHeader {
  HANDLE hNotification;
  DWORD dwStatus;
  CE_NOTIFICATION_TRIGGER* pcent;
  CE_USER_NOTIFICATION* pceun;
} CE_NOTIFICATION_INFO_HEADER, *PCE_NOTIFICATION_INFO_HEADER;

Members

  • hNotification
    Handle to the notification. This handle is the same handle that you passed to the CeGetUserNotification function.
  • dwStatus
    DWORD that indicates the status of the notification. This member is set to CNS_SIGNALLED if the notification is currently active and is set to 0 if the notification is not currently active. A currently active notification either currently displays a dialog box or is currently running if the notification does not have a user interface. A notification is currently running when the notification is between being signaled and having the CreateProcess function run on it.
  • pcent
    Pointer to a CE_NOTIFICATION_TRIGGER structure. This value cannot be NULL.
  • pceun
    Pointer to a CE_USER_NOTIFICATION structure. This value can be NULL.

Requirements

OS Versions: Windows CE 2.12 and later.
Header: Notify.h.

See Also

CeGetUserNotification | CreateProcess | CE_NOTIFICATION_TRIGGER | CE_USER_NOTIFICATION | Notify Structures

Last updated on Wednesday, April 13, 2005

© 2005 Microsoft Corporation. All rights reserved.