Source code of Windows XP (NT5)
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.

47 lines
993 B

  1. /*
  2. Copyright (c) 1998-1999 Microsoft Corporation
  3. Module Name:
  4. stdafx.h
  5. Abstract:
  6. Precompiled header file for MDHCP COM wrapper.
  7. */
  8. #ifndef _MDHCP_COM_WRAPPER_STDAFX_H_
  9. #define _MDHCP_COM_WRAPPER_STDAFX_H_
  10. #define _ATL_FREE_THREADED
  11. #include <atlbase.h>
  12. extern CComModule _Module;
  13. #include <atlcom.h>
  14. #include <limits.h>
  15. #include <msplog.h>
  16. #include <ntsecapi.h> // for UNICODE_STRING
  17. #include <dhcpcapi.h>
  18. extern "C" {
  19. #include <madcapcl.h>
  20. }
  21. #include "objectsafeimpl.h"
  22. //
  23. // We use MCAST_LEASE_INFO for all internal storage of lease info. This is
  24. // just our name for MCAST_LEASE_RESPONSE. Where the C API requires
  25. // MCAST_LEASE_REQUEST, we just construct an MCAST_LEASE_REQUEST based on
  26. // the fields of the MCAST_LEASE_INFO.
  27. //
  28. typedef MCAST_LEASE_RESPONSE MCAST_LEASE_INFO;
  29. typedef PMCAST_LEASE_RESPONSE PMCAST_LEASE_INFO;
  30. #endif // _MDHCP_COM_WRAPPER_STDAFX_H_
  31. // eof