mirror of https://github.com/tongzx/nt5src
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
46 lines
705 B
#include "stdinc.idl"
|
|
import "ihost.idl";
|
|
|
|
[
|
|
object,
|
|
uuid(IID_ISxApwUiView_midl)
|
|
]
|
|
interface ISxApwUiView : IUnknown
|
|
{
|
|
HRESULT
|
|
SetSite(
|
|
ISxApwHost*
|
|
);
|
|
|
|
cpp_quote("#undef CreateWindow")
|
|
[local]
|
|
HRESULT
|
|
CreateWindow(
|
|
HWND hwndParent
|
|
);
|
|
|
|
HRESULT
|
|
OnNextRow(
|
|
[in] int nColumns,
|
|
[in, size_is(nColumns)] const LPCWSTR* columns
|
|
);
|
|
|
|
HRESULT
|
|
OnRowCountEstimateAvailable(
|
|
[in] int
|
|
);
|
|
|
|
HRESULT
|
|
OnQueryStart(
|
|
);
|
|
|
|
HRESULT
|
|
OnQueryDone(
|
|
);
|
|
|
|
HRESULT
|
|
InformSchema(
|
|
[in, size_is(nColumns)] const SxApwColumnInfo rgColumnInfo[],
|
|
[in] int nColumns
|
|
);
|
|
};
|