Lines Matching refs:Notify
116 PGP_NOTIFY Notify = NotificationList; in NotifyGPEvents() local
118 while (Notify != NULL) in NotifyGPEvents()
120 if (Notify->bMachine == bMachine) in NotifyGPEvents()
122 SetEvent(Notify->hEvent); in NotifyGPEvents()
125 Notify = Notify->Next; in NotifyGPEvents()
285 PGP_NOTIFY Notify; in RegisterGPNotification() local
353 Notify = (PGP_NOTIFY)LocalAlloc(LMEM_FIXED, in RegisterGPNotification()
355 if (Notify != NULL) in RegisterGPNotification()
358 Notify->Next = NotificationList; in RegisterGPNotification()
359 Notify->hEvent = hEvent; in RegisterGPNotification()
360 Notify->bMachine = bMachine; in RegisterGPNotification()
362 NotificationList = Notify; in RegisterGPNotification()
389 PGP_NOTIFY Notify = NULL, *NotifyLink; in UnregisterGPNotification() local
394 Notify = NotificationList; in UnregisterGPNotification()
397 while (Notify != NULL) in UnregisterGPNotification()
399 if (Notify->hEvent == hEvent) in UnregisterGPNotification()
402 *NotifyLink = Notify->Next; in UnregisterGPNotification()
403 LocalFree((HLOCAL)Notify); in UnregisterGPNotification()
417 NotifyLink = &Notify->Next; in UnregisterGPNotification()
418 Notify = Notify->Next; in UnregisterGPNotification()