Leaked source code of windows server 2003
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.
|
|
/*++
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_
|