Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
664 B

  1. /*++
  2. Copyright (c) 2000, Microsoft Corporation
  3. Module Name:
  4. elnotify.h
  5. Abstract:
  6. Module to handle the notification from 802.1X state machine to netshell
  7. Revision History:
  8. sachins, Jan 04, 2001, Created
  9. --*/
  10. #ifndef _EAPOL_NOTIFY_H_
  11. #define _EAPOL_NOTIFY_H_
  12. #pragma once
  13. extern "C"
  14. {
  15. HRESULT EAPOLMANAuthenticationStarted(GUID* InterfaceId);
  16. HRESULT EAPOLMANAuthenticationSucceeded(GUID* InterfaceId);
  17. HRESULT EAPOLMANAuthenticationFailed(
  18. GUID* InterfaceId,
  19. DWORD dwType);
  20. HRESULT EAPOLMANNotification(
  21. GUID* InterfaceId,
  22. LPWSTR szwNotificationMessage,
  23. DWORD dwType);
  24. }
  25. #endif // _EAPOL_NOTIFY_H_