Hi, I have a C library function that accepts `uint...
# kotlin-native
a
Hi, I have a C library function that accepts
uint8_t *
, now I want to pass a String bytes to this function. I used
myStringVal.cstr.getPointer()
but I got following error:
Type mismatch.
Required:
CValuesRef<uint8_tVar /* = UByteVarOf<UByte> */>?
Found:
CPointer<ByteVarOf<Byte>>