Notification Types
There are 4 different types of notifications: callback function, event object, window message, and thread message. There are 5 different constants to specify the notification type:
#define DLN_NOTIFICATION_TYPE_NO_NOTIFICATION ((DLN_NOTIFICATION_TYPE)0x00) #define DLN_NOTIFICATION_TYPE_CALLBACK 0x01 #define DLN_NOTIFICATION_TYPE_EVENT_OBJECT 0x02 #define DLN_NOTIFICATION_TYPE_WINDOW_MESSAGE 0x03 #define DLN_NOTIFICATION_TYPE_THREAD_MESSAGE 0x04
2006-2012