This structure defines what event activates a notification.
typedef struct UserNotificationTrigger {
DWORD dwSize;
DWORD dwType;
DWORD dwEvent;
WCHAR *lpszApplication;
WCHAR *lpszArguments;
SYSTEMTIME stStartTime;
SYSTEMTIME stEndTime;
} CE_NOTIFICATION_TRIGGER, *PCE_NOTIFICATION_TRIGGER;
Members
- dwSize
- Specifies the size of this structure in bytes.
- dwType
- Specifies the type of notification. Can be one of the following values:
| Value | Description |
| CNT_EVENT | System event notification. |
| CNT_TIME | Time-based notification. |
| CNT_PERIOD | - Time-based notification is active for the time period between stStartTime and stEndTime.
|
| CNT_CLASSICTIME | Equivalent to using the CeSetUserNotification function. The standard command line is supplied. |
- dwEvent
- Specifies the type of event should
dwType = = CNT_EVENT. - lpszApplication
- Name of the application to execute.
- lpszArguments
- Command line (without the application name).
- stStartTime
- Specifies the beginning of the notification period.
- stEndTime
- Specifies the end of the notification period.
Requirements
| Runs on | Versions | Defined in | Include | Link to |
| Windows CE OS | 2.12 and later | Notify.h | | |
Note This API is part of the complete Windows CE OS package as provided by Microsoft. The functionality of a particular platform is determined by the original equipment manufacturer (OEM) and some devices may not support this API.
Last updated on Tuesday, July 13, 2004
© 1992-2000 Microsoft Corporation. All rights reserved.