mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-06-17 00:43:56 +02:00
Mention passthrough_event() in Event*Payload
This commit is contained in:
@@ -356,6 +356,8 @@ struct WantsString {};
|
|||||||
* For this we use a vector of bytes instead of a string since
|
* For this we use a vector of bytes instead of a string since
|
||||||
* - Or the plugin will write a short null terminated C-string there. We'll
|
* - Or the plugin will write a short null terminated C-string there. We'll
|
||||||
* assume that this is the default if none of the above options apply.
|
* assume that this is the default if none of the above options apply.
|
||||||
|
*
|
||||||
|
* @relates passthrough_event
|
||||||
*/
|
*/
|
||||||
using EventPayload = std::variant<std::nullptr_t,
|
using EventPayload = std::variant<std::nullptr_t,
|
||||||
std::string,
|
std::string,
|
||||||
@@ -453,6 +455,8 @@ struct Event {
|
|||||||
* - A specific struct in response to an event such as `audioMasterGetTime` or
|
* - A specific struct in response to an event such as `audioMasterGetTime` or
|
||||||
* `audioMasterIOChanged`.
|
* `audioMasterIOChanged`.
|
||||||
* - An X11 window pointer for the editor window.
|
* - An X11 window pointer for the editor window.
|
||||||
|
*
|
||||||
|
* @relates passthrough_event
|
||||||
*/
|
*/
|
||||||
using EventResultPayload = std::variant<std::nullptr_t,
|
using EventResultPayload = std::variant<std::nullptr_t,
|
||||||
std::string,
|
std::string,
|
||||||
|
|||||||
Reference in New Issue
Block a user