1 /* 2 * Copyright 2015 Haiku, Inc. All rights reserved. 3 * Distributed under the terms of the MIT License. 4 */ 5 6 #ifndef MIDI_SETTINGS_PRIVATE_H_ 7 #define MIDI_SETTINGS_PRIVATE_H_ 8 9 #include <StorageDefs.h> 10 #include <SupportDefs.h> 11 12 namespace BPrivate { 13 14 struct midi_settings { 15 char soundfont_file[B_FILE_NAME_LENGTH]; 16 }; 17 18 status_t read_midi_settings(struct midi_settings* settings); 19 status_t write_midi_settings(struct midi_settings settings); 20 21 }; 22 23 24 #endif /* MIDI_SETTINGS_PRIVATE_H_ */ 25