Changeset 68890 in vbox for trunk/src/VBox/Additions/common
- Timestamp:
- Sep 27, 2017 3:25:59 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/crOpenGL/load.c
r68248 r68890 1191 1191 static HMODULE loadSystemDll(const char *pszName) 1192 1192 { 1193 #ifndef DEBUG 1193 1194 char szPath[MAX_PATH]; 1194 1195 UINT cchPath = GetSystemDirectoryA(szPath, sizeof(szPath)); … … 1202 1203 memcpy(&szPath[cchPath + 1], pszName, cbName); 1203 1204 return LoadLibraryA(szPath); 1205 #else 1206 return LoadLibraryA(pszName); 1207 #endif 1204 1208 } 1205 1209
Note:
See TracChangeset
for help on using the changeset viewer.