#speaking of burst can we call any
1 messages · Page 1 of 1 (latest)
There is one important caveat to that which is Burst will error if you attempt to call a native function from a static constructor
DllImport is only supported for native plugins, not platform-dependent libraries like kernel32.dll
Ah yes, but you can wrap any method you want to invoke if you need to
We don't want to enter into the world of ensuring arbitrary platform calls work as it makes all platform initialization functions being callable and callable successfully a requirement as well. But if you make your own native lib you can do all the necessary setup and invoke your plugin's methods to take control over the problem space