ashish2244's picture
Initial commit (part 4)
a4473a4 verified
Raw
History Blame Contribute Delete
259 Bytes
// These stubs fix an issue compiling GRPC on Windows with IL2CPP.
// For the moment, only Inference works. (training doesn't)
void * dlopen(const char *filename, int flags) {
return 0;
}
void * dlsym(void *handle, const char *symbol) {
return 0;
}