Fix Windows entry point names
This commit is contained in:
parent
02614e4a5a
commit
c9a5818cb4
1 changed files with 2 additions and 2 deletions
|
@ -1097,13 +1097,13 @@ macro_rules! nih_export_vst3 {
|
|||
// https://github.com/steinbergmedia/vst3_public_sdk/blob/bc459feee68803346737901471441fd4829ec3f9/source/main/dllmain.cpp#L59-L60
|
||||
#[no_mangle]
|
||||
#[cfg(target_os = "windows")]
|
||||
pub extern "system" fn InitModule() -> bool {
|
||||
pub extern "system" fn InitDll() -> bool {
|
||||
true
|
||||
}
|
||||
|
||||
#[no_mangle]
|
||||
#[cfg(target_os = "windows")]
|
||||
pub extern "system" fn DeinitModule() -> bool {
|
||||
pub extern "system" fn ExitDll() -> bool {
|
||||
true
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue