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.

60 lines
1.3 KiB

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (C) Microsoft Corporation, 1996 - 1999
  6. //
  7. // File: global.hxx
  8. //
  9. // Contents: Top level internal header file for PKI util APIs. This file
  10. // includes all base header files and contains other global
  11. // stuff.
  12. //
  13. // History: 27-Nov-96 kevinr created
  14. //
  15. //--------------------------------------------------------------------------
  16. #define CMS_PKCS7 1
  17. #pragma warning(push,3)
  18. #include <windows.h>
  19. #include <assert.h>
  20. #include <malloc.h>
  21. #include <memory.h>
  22. #include <stdio.h>
  23. #include <stdlib.h>
  24. #include <string.h>
  25. #include <time.h>
  26. #include <stddef.h>
  27. #pragma warning (pop)
  28. // unreferenced inline function has been removed
  29. #pragma warning (disable: 4514)
  30. // unreferenced formal parameter
  31. #pragma warning (disable: 4100)
  32. // conditional expression is constant
  33. #pragma warning (disable: 4127)
  34. // assignment within conditional expression
  35. #pragma warning (disable: 4706)
  36. // nonstandard extension used : nameless struct/union
  37. #pragma warning (disable: 4201)
  38. #include <dbgdef.h>
  39. #include <crtem.h>
  40. #include <wincrypt.h>
  41. #include <asn1util.h>
  42. #include <list.hxx>
  43. #include <pkialloc.h>
  44. #include <utf8.h>
  45. #include <pkiasn1.h>
  46. #include <pkistr.h>
  47. #include <pkicrit.h>
  48. #include <unicode.h>
  49. #pragma hdrstop