mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-14 12:30:00 +02:00
Implement IEditController2::openAboutBox
With this IEditController2 has been fully implemented.
This commit is contained in:
@@ -101,6 +101,25 @@ class YaEditController2 : public Steinberg::Vst::IEditController2 {
|
||||
};
|
||||
|
||||
virtual tresult PLUGIN_API openHelp(TBool onlyCheck) override = 0;
|
||||
|
||||
/**
|
||||
* Message to pass through a call to
|
||||
* `IEditController2::openAboutBox(only_check)` to the Wine plugin host.
|
||||
*/
|
||||
struct OpenAboutBox {
|
||||
using Response = UniversalTResult;
|
||||
|
||||
native_size_t instance_id;
|
||||
|
||||
TBool only_check;
|
||||
|
||||
template <typename S>
|
||||
void serialize(S& s) {
|
||||
s.value8b(instance_id);
|
||||
s.value1b(only_check);
|
||||
}
|
||||
};
|
||||
|
||||
virtual tresult PLUGIN_API openAboutBox(TBool onlyCheck) override = 0;
|
||||
|
||||
protected:
|
||||
|
||||
Reference in New Issue
Block a user