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.

23 lines
303 B

  1. #include "stdinc.idl"
  2. import "ihost.idl";
  3. [
  4. object,
  5. uuid(IID_ISxApwDataSource_midl)
  6. ]
  7. interface ISxApwDataSource : IUnknown
  8. {
  9. HRESULT
  10. SetSite(
  11. [in] ISxApwHost*
  12. );
  13. HRESULT
  14. RunQuery(
  15. [in] LPCWSTR query
  16. );
  17. HRESULT
  18. StopQuery(
  19. );
  20. };