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.

45 lines
916 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (C) Microsoft Corporation, 1997 - 1999
  6. //
  7. // File: wincrypt.idl
  8. //
  9. //--------------------------------------------------------------------------
  10. // BUGBUG: Should be in wtypes.idl
  11. #ifndef FARPROC
  12. typedef int (__stdcall FARPROC)();
  13. #endif
  14. // BUGBUG: Should be in wtypes.idl
  15. #ifndef PBYTE
  16. typedef BYTE *PBYTE;
  17. #endif
  18. // BUGBUG: Should be in wtypes.idl
  19. #ifndef PDWORD
  20. typedef DWORD *PDWORD;
  21. #endif
  22. // BUGBUG: Should be in wtypes.idl
  23. #ifndef size_t
  24. typedef unsigned int size_t;
  25. #endif
  26. // BUGBUG: Should be in wtypes.idl
  27. #ifndef VOID
  28. typedef void VOID;
  29. #endif
  30. // BUGBUG: Should be in wtypes.idl
  31. #ifndef ULONG_PTR
  32. #if defined(_WIN64)
  33. typedef unsigned __int64 ULONG_PTR;
  34. #else
  35. typedef unsigned long ULONG_PTR;
  36. #endif
  37. #endif
  38. #include "wincrypt.h"