windows-nt/Source/XPSP1/NT/net/layer2svc/eapol/service/elnotify.h
2020-09-26 16:20:57 +08:00

41 lines
664 B
C

/*++
Copyright (c) 2000, Microsoft Corporation
Module Name:
elnotify.h
Abstract:
Module to handle the notification from 802.1X state machine to netshell
Revision History:
sachins, Jan 04, 2001, Created
--*/
#ifndef _EAPOL_NOTIFY_H_
#define _EAPOL_NOTIFY_H_
#pragma once
extern "C"
{
HRESULT EAPOLMANAuthenticationStarted(GUID* InterfaceId);
HRESULT EAPOLMANAuthenticationSucceeded(GUID* InterfaceId);
HRESULT EAPOLMANAuthenticationFailed(
GUID* InterfaceId,
DWORD dwType);
HRESULT EAPOLMANNotification(
GUID* InterfaceId,
LPWSTR szwNotificationMessage,
DWORD dwType);
}
#endif // _EAPOL_NOTIFY_H_