Question about platform.windows.* . Is there an of...
# kotlin-native
j
Question about platform.windows.* . Is there an official doc where we can see which functions are supposed to work? Case in point:
Copy code
platform.windows.UuidCreate(...)
This shows up in auto-complete. And IntelliJ doesn't complain. But the compiler ends up crashing. Also, auto-complete finds some functions which do work, like :
Copy code
val tempPath = GetTempPath?.invoke(nBufferLength, buffer)
.. I'm a bit lost as to what I can expect to work? What's a good place to find a correct definition of what works?
anyone got an idea?