Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
628 B

  1. extern "C" {
  2. #include "ntddndis.h"
  3. #include "wzcsapi.h"
  4. }
  5. #pragma once
  6. #define EAPOL_CTL_LOCKED 0x00000001
  7. //
  8. // CEapolConfig
  9. //
  10. class CEapolConfig
  11. {
  12. public:
  13. DWORD m_dwCtlFlags;
  14. CEapolConfig();
  15. ~CEapolConfig();
  16. DWORD CopyEapolConfig(CEapolConfig *pEapolConfig);
  17. LRESULT LoadEapolConfig(LPWSTR wszIntfGuid, PNDIS_802_11_SSID pndSsid);
  18. LRESULT SaveEapolConfig(LPWSTR wszIntfGuid, PNDIS_802_11_SSID pndSsid);
  19. EAPOL_INTF_PARAMS m_EapolIntfParams;
  20. DTLLIST *m_pListEapcfgs;
  21. BOOL Is8021XEnabled();
  22. VOID Set8021XState(BOOLEAN fSet);
  23. };