jvmMain.dev.atsushieno.ktmidi.Utility.jvm.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ktmidi-jvm Show documentation
Show all versions of ktmidi-jvm Show documentation
Kotlin Multiplatform library for MIDI 1.0 and MIDI 2.0
The newest version!
package dev.atsushieno.ktmidi
import io.ktor.utils.io.core.*
typealias KtorByteOrder = io.ktor.utils.io.core.ByteOrder
internal actual fun stringToByteArray(s: String): ByteArray = s.toByteArray()
internal actual fun nativeByteOrder(): ByteOrder = when(KtorByteOrder.nativeOrder()) {
KtorByteOrder.BIG_ENDIAN -> ByteOrder.BIG_ENDIAN
KtorByteOrder.LITTLE_ENDIAN -> ByteOrder.LITTLE_ENDIAN
}