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.

37 lines
658 B

  1. // BUGBUG: Should be in wtypes.idl
  2. #ifndef FARPROC
  3. typedef int (__stdcall FARPROC)();
  4. #endif
  5. // BUGBUG: Should be in wtypes.idl
  6. #ifndef PBYTE
  7. typedef BYTE *PBYTE;
  8. #endif
  9. // BUGBUG: Should be in wtypes.idl
  10. #ifndef PDWORD
  11. typedef DWORD *PDWORD;
  12. #endif
  13. // BUGBUG: Should be in wtypes.idl
  14. #ifndef size_t
  15. typedef unsigned int size_t;
  16. #endif
  17. // BUGBUG: Should be in wtypes.idl
  18. #ifndef VOID
  19. typedef void VOID;
  20. #endif
  21. // BUGBUG: Should be in wtypes.idl
  22. #ifndef ULONG_PTR
  23. #if defined(_WIN64)
  24. typedef unsigned __int64 ULONG_PTR;
  25. #else
  26. typedef unsigned long ULONG_PTR;
  27. #endif
  28. #endif
  29. #define CMS_PKCS7 1
  30. #include "wincrypt.h"