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.

44 lines
918 B

  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. This file
  10. // includes all base header files and contains other global
  11. // stuff.
  12. //
  13. // History: 21-Nov-96 philh created
  14. //
  15. //--------------------------------------------------------------------------
  16. #include <windows.h>
  17. #include <assert.h>
  18. #include <malloc.h>
  19. #include <memory.h>
  20. #include <stdio.h>
  21. #include <stdlib.h>
  22. #include <string.h>
  23. #include <time.h>
  24. #include <crtdbg.h>
  25. #include "crtem.h"
  26. #include "wincrypt.h"
  27. #include "unicode.h"
  28. #include "crypttls.h"
  29. #include "setcert.h"
  30. #ifdef __cplusplus
  31. extern "C" {
  32. #endif
  33. #include "x509.h"
  34. #ifdef __cplusplus
  35. } // Balance extern "C" above
  36. #endif
  37. #include "pkiasn1.h"
  38. #pragma hdrstop