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.

46 lines
705 B

  1. #include "stdinc.idl"
  2. import "ihost.idl";
  3. [
  4. object,
  5. uuid(IID_ISxApwUiView_midl)
  6. ]
  7. interface ISxApwUiView : IUnknown
  8. {
  9. HRESULT
  10. SetSite(
  11. ISxApwHost*
  12. );
  13. cpp_quote("#undef CreateWindow")
  14. [local]
  15. HRESULT
  16. CreateWindow(
  17. HWND hwndParent
  18. );
  19. HRESULT
  20. OnNextRow(
  21. [in] int nColumns,
  22. [in, size_is(nColumns)] const LPCWSTR* columns
  23. );
  24. HRESULT
  25. OnRowCountEstimateAvailable(
  26. [in] int
  27. );
  28. HRESULT
  29. OnQueryStart(
  30. );
  31. HRESULT
  32. OnQueryDone(
  33. );
  34. HRESULT
  35. InformSchema(
  36. [in, size_is(nColumns)] const SxApwColumnInfo rgColumnInfo[],
  37. [in] int nColumns
  38. );
  39. };