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.

69 lines
1.6 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. //
  17. // ASN1C needs to be defined so that the compiler does not pickup the ASN1 routines from
  18. // the import table
  19. //
  20. #ifdef _X86_
  21. #define ASN1C
  22. #endif
  23. #define CMS_PKCS7 1
  24. #pragma warning(push,3)
  25. #include <windows.h>
  26. #include <assert.h>
  27. #include <malloc.h>
  28. #include <memory.h>
  29. #include <stdio.h>
  30. #include <stdlib.h>
  31. #include <string.h>
  32. #include <time.h>
  33. #include <stddef.h>
  34. #pragma warning (pop)
  35. // unreferenced inline function has been removed
  36. #pragma warning (disable: 4514)
  37. // unreferenced formal parameter
  38. #pragma warning (disable: 4100)
  39. // conditional expression is constant
  40. #pragma warning (disable: 4127)
  41. // assignment within conditional expression
  42. #pragma warning (disable: 4706)
  43. // nonstandard extension used : nameless struct/union
  44. #pragma warning (disable: 4201)
  45. #include <dbgdef.h>
  46. #include <crtem.h>
  47. #include <wincrypt.h>
  48. #include <asn1util.h>
  49. #include <list.hxx>
  50. #include <pkialloc.h>
  51. #include <utf8.h>
  52. #include <pkiasn1.h>
  53. #include <pkistr.h>
  54. #include <pkicrit.h>
  55. #include <unicode.h>
  56. #pragma hdrstop