feufaro/composeApp/src/commonMain/kotlin/mg/dot/feufaro/midi/MidiWriterKotlin.kt
2026-01-09 08:43:24 +01:00

10 lines
No EOL
360 B
Kotlin

package mg.dot.feufaro.midi
import mg.dot.feufaro.FileRepository
expect class MidiWriterKotlin(fileRepository: FileRepository) {
fun addNote( voiceNumber: Int, note: Int, velocity: Int, tick: Long)
fun save(filePath: String)
fun addMetaMessage(type: Int, tick: Int, nbData: Int, metaByteString: String)
fun process(pitches: List<MidiPitch>)
}