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.

66 lines
1.4 KiB

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