reactos/include/psdk/eaptypes.h
Hermès Bélusca-Maïto b819608ed8 Create a branch for console restructuration work.
svn path=/branches/condrv_restructure/; revision=63104
2014-05-02 14:13:40 +00:00

18 lines
276 B
C

#ifndef EAPTYPES_H
#define EAPTYPES_H
typedef struct _EAP_TYPE
{
BYTE type;
DWORD dwVendorId;
DWORD dwVendorType;
} EAP_TYPE, *PEAP_TYPE;
typedef struct _EAP_METHOD_TYPE
{
EAP_TYPE eapType;
DWORD dwAuthorId;
} EAP_METHOD_TYPE, *PEAP_METHOD_TYPE;
#endif