1 2 3 4 5 6 7 8 9 10 11
package it.mpp0 import kotlinx.cinterop.CPointed import kotlinx.cinterop.CPointer /** * Will print the raw value */ fun CPointer<CPointed>.customExtension() { println(this.rawValue) }