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.

35 lines
953 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (C) Microsoft Corporation, 1997 - 1999
  6. //
  7. // File: cerrpc.idl
  8. //
  9. //--------------------------------------------------------------------------
  10. import "unknwn.idl";
  11. ////////////////////////////
  12. // Interfaces
  13. [
  14. uuid(0d72a7d4-6148-11d1-b4aa-00c04fb66ea0),
  15. version(1.0),
  16. pointer_default(unique)
  17. ]
  18. interface ICertProtectFunctions
  19. {
  20. DWORD
  21. SSCertProtectFunction(
  22. [in] handle_t h,
  23. [in] DWORD dwFuncId,
  24. [in] DWORD dwFlags,
  25. [in] LPCWSTR pwszIn,
  26. [in][size_is(cbIn)] BYTE* pbIn,
  27. [in] DWORD cbIn,
  28. [out][size_is(,*pcbOut)] BYTE** ppbOut,
  29. [out] DWORD* pcbOut
  30. );
  31. }