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
1.1 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 <windows.h>
  16. #include <assert.h>
  17. #include <memory.h>
  18. #include <stddef.h>
  19. #pragma warning (pop)
  20. // unreferenced inline function has been removed
  21. #pragma warning (disable: 4514)
  22. // unreferenced formal parameter
  23. #pragma warning (disable: 4100)
  24. // conditional expression is constant
  25. #pragma warning (disable: 4127)
  26. // assignment within conditional expression
  27. #pragma warning (disable: 4706)
  28. // nonstandard extension used : nameless struct/union
  29. #pragma warning (disable: 4201)
  30. #include "minasn1.h"
  31. #include "mincrypt.h"
  32. #include "fileutil.h"
  33. #include "imagehack.h"
  34. #define I_MemAlloc(cb) ((void*)LocalAlloc(LPTR, cb))
  35. #define I_MemFree(pv) (LocalFree((HLOCAL)pv))
  36. #pragma hdrstop