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.

46 lines
991 B

  1. #pragma once
  2. #include <stddef.h>
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5. #include <string.h>
  6. #include <stdarg.h>
  7. #include <tchar.h>
  8. #include <nt.h>
  9. #include <ntrtl.h>
  10. #include <nturtl.h>
  11. #include <rpc.h>
  12. #include <windows.h>
  13. #include <rtutils.h>
  14. #include <ntddndis.h>
  15. #include <ntddip.h>
  16. typedef NDIS_802_11_MAC_ADDRESS *PNDIS_802_11_MAC_ADDRESS;
  17. #include <ndisguid.h>
  18. #include <ndispnp.h>
  19. #include <nuiouser.h>
  20. #include <dbt.h>
  21. #include <wmistr.h>
  22. #include <wmium.h>
  23. #include <netconp.h>
  24. #include <dhcpcapi.h>
  25. #include <wincrypt.h>
  26. #include <lmerr.h>
  27. #include <lmcons.h>
  28. #include <secobj.h>
  29. #include <esent.h>
  30. #include "wzc_s.h"
  31. #include "eapolext.h"
  32. #include "database.h"
  33. #define BAIL_ON_WIN32_ERROR(dwError) \
  34. if (dwError) { \
  35. goto error; \
  36. }
  37. #define BAIL_ON_LOCK_ERROR(dwError) \
  38. if (dwError) { \
  39. goto lock; \
  40. }