reactos/include/psdk/eaptypes.h
Timo Kreuzer 6afbc8f483 Hopefully create a branch and not destroy the svn repository.
svn path=/branches/reactos-yarotows/; revision=45219
2010-01-23 23:25:04 +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