mirror of
https://github.com/GayPizzaSpecifications/pork.git
synced 2025-11-02 17:19:38 +00:00
8 lines
154 B
Kotlin
8 lines
154 B
Kotlin
package gay.pizza.pork.ffi
|
|
|
|
import java.nio.file.Path
|
|
|
|
object FfiWindowsPlatform : FfiPlatform {
|
|
override fun findLibrary(name: String): Path? = null
|
|
}
|