eapmethodtypes.h 560 B

12345678910111213141516171819202122232425
  1. /**
  2. * This file has no copyright assigned and is placed in the Public Domain.
  3. * This file is part of the mingw-w64 runtime package.
  4. * No warranty is given; refer to the file DISCLAIMER.PD within this package.
  5. */
  6. #ifndef _INC_EAPMETHODTYPES
  7. #define _INC_EAPMETHODTYPES
  8. #if (_WIN32_WINNT >= 0x0600)
  9. #include <eaptypes.h>
  10. #ifdef __cplusplus
  11. extern "C" {
  12. #endif
  13. typedef struct tagEapPacket {
  14. BYTE Code;
  15. BYTE Id;
  16. BYTE Length[2];
  17. BYTE Data[1];
  18. } EapPacket;
  19. #ifdef __cplusplus
  20. }
  21. #endif
  22. #endif /*(_WIN32_WINNT >= 0x0600)*/
  23. #endif /*_INC_EAPMETHODTYPES*/