CreateControlInput function (corewindow.h)
Creates a CoreComponentInputSource object in the caller’s UI thread.
Syntax
HRESULT CreateControlInput(
[in] REFIID riid,
[out] void **ppv
);
Parameters
[in] riid
Interface ID of the object. Must to be set to the UUID for ICoreInputSourceBase, the default interface of CoreComponentInputSource, which is 9F488807-4580-4BE8-BE68-92A9311713BB
.
[out] ppv
Pointer to receive the CoreComponentInputSource object.
Return value
If this function succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.
Remarks
This API must be called from the UI thread to create CoreComponentInputSource object. The object created using this API can be used only in that thread in which it was created.
If the call is successful, the caller can call QueryInterface on the returned ICoreInputSourceBase object to obtain the ICoreInputInterop object that created it.
Requirements
Requirement | Value |
---|---|
Target Platform | Windows |
Header | corewindow.h |
DLL | Windows.UI.Core.dll |