IVsTextLayerMarker.QueryClientInterface(Guid, IntPtr) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the client interface specified.
public:
int QueryClientInterface(Guid % iid, [Runtime::InteropServices::Out] IntPtr % ppClient);
public int QueryClientInterface (ref Guid iid, out IntPtr ppClient);
abstract member QueryClientInterface : Guid * nativeint -> int
Public Function QueryClientInterface (ByRef iid As Guid, ByRef ppClient As IntPtr) As Integer
Parameters
- iid
- Guid
[in] The client iid.
- ppClient
-
IntPtr
nativeint
[out] The client interface.
Returns
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From textmgr.idl:
HRESULT IVsTextLayerMarker::QueryClientInterface(
[in] REFIID iid,
[out, iid_is(iid)] void **ppClient
);