Fix generation of KtBridges, now it is using actual C Function Name
Merge-request: KT-MR-14337 Merged-by: Artem Olkov <artem.olkov@jetbrains.com>
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
import kotlin.native.internal.ExportedBridge
|
||||
|
||||
@ExportedBridge("a_b_bar_bridge")
|
||||
@ExportedBridge("a_b_bar_bridge__TypesOfArguments__int32_t_int64_t__")
|
||||
public fun a_b_bar_bridge(param1: Int, param2: Long): Int {
|
||||
val result = a.b.bar(param1, param2)
|
||||
return result
|
||||
}
|
||||
|
||||
@ExportedBridge("a_b_foo_bridge")
|
||||
@ExportedBridge("a_b_foo_bridge__TypesOfArguments__int32_t_int64_t__")
|
||||
public fun a_b_foo_bridge(param1: Int, param2: Long): Boolean {
|
||||
val result = a.b.foo(param1, param2)
|
||||
return result
|
||||
|
||||
Reference in New Issue
Block a user