Cog/Preferences/Preferences/MIDIPane.h
Christopher Snowhill e9b15bc269 MIDI: Add unstable configuration for AU players
It's regarded as unstable as some plugins randomly decide to overflow
the main thread queue and crash the player on the main thread check, but
only sometimes, and not always.

Signed-off-by: Christopher Snowhill <kode54@gmail.com>
2025-03-28 16:18:04 -07:00

23 lines
472 B
Objective-C

//
// MIDIPane.h
// General
//
// Created by Christopher Snowhill on 10/15/13.
//
//
#import "GeneralPreferencePane.h"
#import <Cocoa/Cocoa.h>
@interface MIDIPane : GeneralPreferencePane {
IBOutlet NSArrayController *midiPluginBehaviorArrayController;
IBOutlet NSButton *midiPluginSetupButton;
IBOutlet NSPopUpButton *midiPluginControl;
IBOutlet NSPopUpButton *midiFlavorControl;
}
- (IBAction)setupPlugin:(id)sender;
- (IBAction)setSoundFont:(id)sender;
@end