All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.org.jetbrains.skia.impl.RefCnt.kt Maven / Gradle / Ivy

There is a newer version: 0.8.15
Show newest version
package org.jetbrains.skia.impl

/**
 * Peer for reference counted native object.
 */
expect abstract class RefCnt : Managed {
    protected constructor(ptr: NativePointer)
    protected constructor(ptr: NativePointer, allowClose: Boolean)

    /**
     * Number of references on underlying native object.
     */
    val refCount: Int
}

internal expect fun RefCnt_nGetFinalizer(): NativePointer




© 2015 - 2024 Weber Informatics LLC | Privacy Policy