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.

31 lines
689 B

  1. [
  2. uuid(0cca4990-7ead-11ce-aea2-524153480001),
  3. version(1.0)
  4. ]
  5. interface IOrTest
  6. {
  7. import "obase.idl";
  8. // Interface between OR test applications
  9. error_status_t
  10. TestBinding(
  11. [in] handle_t binding);
  12. error_status_t
  13. WaitForNextTest(
  14. [in] handle_t binding,
  15. [in] unsigned long test);
  16. error_status_t GetState(
  17. [in] handle_t binding,
  18. [in] long cOxids,
  19. [in] long cOids,
  20. [in] long cOxidInfos,
  21. [out, size_is(cOxids)] OXID aOxids[],
  22. [out, size_is(cOids)] OID aOids[],
  23. [out, size_is(cOxidInfos)] OXID_INFO aOxidInfos[],
  24. [out] DUALSTRINGARRAY **ppdaRemoteOrBindings
  25. );
  26. }