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.

39 lines
929 B

  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. #include <windows.h>
  15. #include <assert.h>
  16. #include <memory.h>
  17. #include <stddef.h>
  18. // unreferenced formal parameter
  19. #pragma warning (disable: 4100)
  20. // conditional expression is constant
  21. #pragma warning (disable: 4127)
  22. // assignment within conditional expression
  23. #pragma warning (disable: 4706)
  24. #include "minasn1.h"
  25. #include "mincrypt.h"
  26. #include "fileutil.h"
  27. #include "imagehack.h"
  28. #define I_MemAlloc(cb) ((void*)LocalAlloc(LPTR, cb))
  29. #define I_MemFree(pv) (LocalFree((HLOCAL)pv))
  30. #pragma hdrstop