vx_req_aux_global_monitor_keyboard_mouse
Reference the Vivox Core SDK API.
Read time 1 minuteLast updated 13 days ago
Module: Audio Devices More...
#include <VxcRequests.h>Public Attributes
Name | |
|---|---|
| vx_req_base_t | base The common properties for all requests. |
| char * | name An application-defined name for the binding. |
| int | code_count The number of valid key codes in the codes member. |
| int[10] | codes The key codes that must be pressed to activate this binding. |
Detailed Description
See: vx_resp_aux_global_monitor_keyboard_mouse Note: On OSX, to use this feature, "Enable Access for Assistive Devices" must be enabled. Attention: This is not supported on the iPhone platform.struct vx_req_aux_global_monitor_keyboard_mouse;
Public Attributes Documentation
variable base
The common properties for all requests.vx_req_base_t base;
variable name
An application-defined name for the binding. This name is returned in the vx_evt_keyboard_mouse_t event when the key combination is pressed or released.char * name;
variable code_count
The number of valid key codes in the codes member. If this is zero, then the binding for that name is cleared, and no more events are received for that binding.int code_count;
variable codes
The key codes that must be pressed to activate this binding.int[10] codes;