Enumerazione NOTIFY_FILTER
Identifica i callback per le funzioni del debugger. Per altre informazioni, vedere il metodo INotifySource2::SetNotifyFilter .
Sintassi
enum tagNOTIFY_FILTER
{
NOTIFY_FILTER_ONSYNCCALLOUT = 0x1,
NOTIFY_FILTER_ONSYNCCALLENTER = 0x2,
NOTIFY_FILTER_ONSYNCCALLEXIT = 0x4,
NOTIFY_FILTER_ONSYNCCALLRETURN = 0x8,
NOTIFY_FILTER_ALLSYNC = NOTIFY_FILTER_ONSYNCCALLOUT | NOTIFY_FILTER_ONSYNCCALLENTER | NOTIFY_FILTER_ONSYNCCALLEXIT | NOTIFY_FILTER_ONSYNCCALLRETURN,
NOTIFY_FILTER_ALL = 0xffffffff,
NOTIFY_FILTER_NONE = 0
};
Members
Membro | Descrizione |
---|---|
NOTIFY_FILTER_ONSYNCCALLOUT |
Indica che il metodo INotifySink2::OnSyncCallOut deve essere richiamato. |
NOTIFY_FILTER_ONSYNCCALLENTER |
Indica che il metodo INotifySink2::OnSyncCallEnter deve essere richiamato. |
NOTIFY_FILTER_ONSYNCCALLEXIT |
Indica che il metodo INotifySink2::OnSyncCallExit deve essere richiamato. |
NOTIFY_FILTER_ONSYNCCALLRETURN |
Indica che il metodo INotifySink2::OnSyncCallReturn deve essere richiamato . |
NOTIFY_FILTER_ALLSYNC |
Indica che tutti i metodi INotifySink2 devono essere richiamati. |
NOTIFY_FILTER_ALL |
Attiva tutte le notifiche esistenti e future. |
NOTIFY_FILTER_NONE |
Indica che non devono essere richiamati metodi di notifica. |
Requisiti
Intestazione: ProtocolNotify2.idl
Vedi anche
Collabora con noi su GitHub
L'origine di questo contenuto è disponibile in GitHub, in cui è anche possibile creare ed esaminare i problemi e le richieste pull. Per ulteriori informazioni, vedere la guida per i collaboratori.