1 #ifndef EAPTYPES_H 2 #define EAPTYPES_H 3 4 typedef struct _EAP_TYPE 5 { 6 BYTE type; 7 DWORD dwVendorId; 8 DWORD dwVendorType; 9 } EAP_TYPE, *PEAP_TYPE; 10 11 typedef struct _EAP_METHOD_TYPE 12 { 13 EAP_TYPE eapType; 14 DWORD dwAuthorId; 15 } EAP_METHOD_TYPE, *PEAP_METHOD_TYPE; 16 17 #endif 18