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.

61 lines
780 B

  1. /*++
  2. Copyright (c) 1997 Microsoft Corporation
  3. Module Name:
  4. precomp.hxx
  5. Abstract:
  6. Master include file.
  7. Author:
  8. Keith Moore (keithmo) 05-Feb-1997
  9. Revision History:
  10. --*/
  11. #ifndef _PRECOMP_HXX_
  12. #define _PRECOMP_HXX_
  13. //
  14. // System include files.
  15. //
  16. #include <nt.h>
  17. #include <ntrtl.h>
  18. #include <nturtl.h>
  19. #include <windows.h>
  20. #include <ole2.h>
  21. #include <stdio.h>
  22. #include <stdlib.h>
  23. #include <string.h>
  24. #include <memory.h>
  25. //
  26. // Project include files.
  27. //
  28. #include <iadmw.h>
  29. #include <iiscnfg.h>
  30. #include <mdlib.hxx>
  31. //
  32. // Private definitions.
  33. //
  34. #define MdpAllocMem(cb) (VOID *)LocalAlloc( LPTR, (cb) )
  35. #define MdpFreeMem(p) (VOID)LocalFree( (HLOCAL)(p) )
  36. #endif // _PRECOMP_HXX_