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.

34 lines
924 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (C) Microsoft Corporation, 1997 - 1999
  6. //
  7. // File: keyrpc.idl
  8. //
  9. //--------------------------------------------------------------------------
  10. import "unknwn.idl";
  11. ////////////////////////////
  12. // Interfaces
  13. [
  14. uuid(3dde7c30-165d-11d1-ab8f-00805f14db40),
  15. version(1.0),
  16. pointer_default(unique)
  17. ]
  18. interface BackupKey
  19. {
  20. DWORD
  21. BackuprKey(
  22. [in] handle_t h,
  23. [in] GUID* pguidActionAgent,
  24. [in][size_is(cbDataIn)] BYTE* pDataIn,
  25. [in] DWORD cbDataIn,
  26. [out][size_is(,*pcbDataOut)] BYTE** ppDataOut,
  27. [out] DWORD* pcbDataOut,
  28. [in] DWORD dwParam
  29. );
  30. }