Provide CName annotation in common stdlib as optional

This commit is contained in:
Svyatoslav Scherbina
2021-03-18 11:18:04 +03:00
committed by Space
parent 552bd108a9
commit 8b3ff11a2b
2 changed files with 19 additions and 1 deletions
@@ -50,5 +50,5 @@ public typealias SharedImmutable = kotlin.native.concurrent.SharedImmutable
*/
@Target(AnnotationTarget.FUNCTION)
@Retention(AnnotationRetention.BINARY)
public annotation class CName(val externName: String = "", val shortName: String = "")
public actual annotation class CName(actual val externName: String = "", actual val shortName: String = "")
@@ -0,0 +1,18 @@
/*
* Copyright 2010-2021 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
package kotlin.native
/**
* Makes top level function available from C/C++ code with the given name.
*
* [externName] controls the name of top level function, [shortName] controls the short name.
* If [externName] is empty, no top level declaration is being created.
*/
@SinceKotlin("1.5")
@Target(AnnotationTarget.FUNCTION)
@Retention(AnnotationRetention.BINARY)
@OptionalExpectation
public expect annotation class CName(val externName: String = "", val shortName: String = "")