CVariable

abstract class CVariable(rawPtr: NativePtr) : CPointed

The C data variable located in memory.

The non-abstract subclasses should represent the (complete) C data type and thus specify size and alignment. Each such subclass must have a companion object which is a Type.

Constructors

Link copied to clipboard
fun CVariable(rawPtr: NativePtr)

Types

Link copied to clipboard
open class Type(val size: Long, val align: Int)

The (complete) C data type.

Properties

Link copied to clipboard
var rawPtr: NativePtr

Inheritors

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Extensions

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
fun <T : CVariable> CPointed.readValue(size: Long, align: Int): CValue<T>
Link copied to clipboard
fun <T : CVariable> CPointed.readValues(size: Int, align: Int): CValues<T>
Link copied to clipboard

Changes the interpretation of the pointed data or code.