Add window type constants missing from vst3_sys
This commit is contained in:
parent
2a0fde2fd5
commit
895dada6f6
|
@ -60,6 +60,16 @@ pub use vst3_sys::sys::GUID;
|
|||
|
||||
/// The VST3 SDK version this is roughtly based on.
|
||||
const VST3_SDK_VERSION: &str = "VST 3.6.14";
|
||||
|
||||
// Window handle type constants missing from vst3-sys
|
||||
const VST3_PLATFORM_HWND: &str = "HWND";
|
||||
#[allow(unused)]
|
||||
const VST3_PLATFORM_HIVIEW: &str = "HIView";
|
||||
const VST3_PLATFORM_NSVIEW: &str = "NSView";
|
||||
#[allow(unused)]
|
||||
const VST3_PLATFORM_UIVIEW: &str = "UIView";
|
||||
const VST3_PLATFORM_X11_WINDOW: &str = "X11EmbedWindowID";
|
||||
|
||||
/// Right now the wrapper adds its own bypass parameter.
|
||||
///
|
||||
/// TODO: Actually use this parameter.
|
||||
|
|
Loading…
Reference in a new issue