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.

52 lines
1.2 KiB

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (C) Microsoft Corporation, 2001 - 2001
  6. //
  7. // File: global.hxx
  8. //
  9. // Contents: Top level internal header file.
  10. //
  11. // History: 16-Jan-01 phil created
  12. //
  13. //--------------------------------------------------------------------------
  14. #pragma warning(push,3)
  15. #include <nt.h>
  16. #include <ntrtl.h>
  17. #include <nturtl.h>
  18. #include <windows.h>
  19. #include <wincrypt.h>
  20. #include <winreg.h>
  21. #include <assert.h>
  22. #include <memory.h>
  23. #include <stddef.h>
  24. #pragma warning (pop)
  25. // unreferenced inline function has been removed
  26. #pragma warning (disable: 4514)
  27. // unreferenced formal parameter
  28. #pragma warning (disable: 4100)
  29. // conditional expression is constant
  30. #pragma warning (disable: 4127)
  31. // assignment within conditional expression
  32. #pragma warning (disable: 4706)
  33. // nonstandard extension used : nameless struct/union
  34. #pragma warning (disable: 4201)
  35. #include "minasn1.h"
  36. #include "mincrypt.h"
  37. #include "fileutil.h"
  38. #include "imagehack.h"
  39. #define I_MemAlloc(cb) ((void*)LocalAlloc(LPTR, cb))
  40. #define I_MemFree(pv) (LocalFree((HLOCAL)pv))
  41. #pragma hdrstop