I was able to use the .dll generated by kotlin/nat...
# kotlin-native
m
I was able to use the .dll generated by kotlin/native in a windows console c++ app. But, I am not able to use it in a c# app. so far here is what I have tried : • I can load the .dll • I can access the pointer like (libnative_symbols<- the entry point) • from this pointer I was easily able to access the function as libnative_symbols()->root.kotlin.packagename.functionName() • can't I use the pointer to access the function in the same way as above in a c# app? It seems that pointers in a c# app is different in c++ app and so far what I have understood is, we need to define a struct by looking into the header file manually, which is not a nice solution. Has anyone tried it? can I access the function from this pointer in a simpler way?