| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Program Files (x86)/Windows Kits/10/Include/10.0.19041.0/um/ |
Upload File : |
///////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) Microsoft Corporation
//
// SYNOPSIS
//
// Declares datastructures that executes the peer eap state machine.
//
///////////////////////////////////////////////////////////////////////////////
#ifndef EAPMETHODAPIS_H
#define EAPMETHODAPIS_H
#pragma once
#include <winapifamily.h>
#pragma region Desktop Family
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
#ifdef __cplusplus
extern "C" {
#endif
// structure that represents EAP packet on the wire
typedef struct tagEapPacket
{
BYTE Code;
BYTE Id;
BYTE Length[2];
BYTE Data[1];
// Any additional data following the first byte. The length of
// the data can be deduced by the length fields.
} EapPacket;
//
// EAP packet codes from EAP spec.
//
typedef
#ifdef __midl
[v1_enum]
#endif
// possible values for 'code' in EAPPacket
enum tagEapCode
{
EapCodeMinimum = 1,
EapCodeRequest = 1,
EapCodeResponse,
EapCodeSuccess,
EapCodeFailure,
EapCodeMaximum = EapCodeFailure
} EapCode;
// This is a handle to an eap session owned by the individual eap methods.
typedef VOID* EAP_SESSION_HANDLE;
#ifdef __cplusplus
}
#endif
#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) */
#pragma endregion
#endif // EAPMETHODAPIS_H