CreateControlInput function
Creates a ICoreInputSourceBase object in the caller’s UI thread.
Syntax
HRESULT WINAPI CreateControlInput(
_In_ REFIID riid,
_Out_ _COM_Outptr_ void **ppv
);
Parameters
- riid [in]
-
Interface ID of the object. Must to be set to the UUID for ICoreInputSourceBase, which is 9F488807-4580-4BE8-BE68-92A9311713BB.
- ppv [out]
-
Pointer to receive the ICoreInputSourceBase 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 ICoreInputSourceBase 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
|
Header |
|
|---|---|
|
DLL |
|
See also
Show: