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.
|
|
//+---------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1997.
//
// File: E A P O L F U N C . H
//
// Contents: EAPOL Notification Functions
//
// Notes:
//
// Author: sachins 26 Jul 2000
//
//----------------------------------------------------------------------------
#pragma once
extern "C" {
HRESULT EAPOLMANAuthenticationStarted(REFGUID InterfaceId);
HRESULT EAPOLMANAuthenticationSucceeded(REFGUID InterfaceId);
HRESULT EAPOLMANAuthenticationFailed( REFGUID InterfaceId, DWORD dwType);
HRESULT EAPOLMANNotification( REFGUID InterfaceId, LPWSTR szwNotificationMessage, DWORD dwType);
extern VOID EAPOLServiceMain ( IN DWORD argc, IN LPWSTR *lpwsServiceArgs );
extern VOID EAPOLCleanUp ( IN DWORD dwError );
extern DWORD ElDeviceNotificationHandler ( IN VOID *lpEventData, IN DWORD dwEventType );
}
|