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.

32 lines
654 B

  1. //[ IBindTest_itf
  2. //+-------------------------------------------------------------------
  3. //
  4. // Interface: IBindTest (ib)
  5. //
  6. // Purpose: Interface for manipulating balls
  7. //
  8. // History: 23-Nov-92 Rickhi Created
  9. //
  10. // Notes:
  11. //
  12. //--------------------------------------------------------------------
  13. [ object,
  14. uuid(00000138-0002-0008-C000-000000000046),
  15. pointer_default(unique) ]
  16. interface IBindTest : IUnknown
  17. {
  18. import "unknwn.idl";
  19. SCODE Bind(
  20. [in, string] LPWSTR pwszPath,
  21. [in] REFIID riid,
  22. [out, iid_is(riid)] IUnknown **ppv);
  23. SCODE TestBindEcho(
  24. [in, string] LPWSTR pwszDataIn,
  25. [out, string] LPWSTR *ppwszDataOut);
  26. }
  27. //]