[build] Make loading sim extensions from MyRobot easier (#2671)

This commit is contained in:
Thad House
2020-08-31 00:34:34 -07:00
committed by GitHub
parent 7548fdae5d
commit 05701317b4
4 changed files with 75 additions and 28 deletions

View File

@@ -23,7 +23,7 @@
#if defined(WIN32) || defined(_WIN32)
#define DELIM ';'
#define HTYPE HMODULE
#define DLOPEN(a) LoadLibrary(a)
#define DLOPEN(a) LoadLibraryA(a)
#define DLSYM GetProcAddress
#define DLCLOSE FreeLibrary
#else