Changeset 68890 in vbox
- Timestamp:
- Sep 27, 2017 3:25:59 PM (7 years ago)
- Location:
- trunk/src/VBox/Additions
- Files:
-
- 2 edited
-
WINNT/Graphics/Wine_new/wined3d/directx.c (modified) (2 diffs)
-
common/crOpenGL/load.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Wine_new/wined3d/directx.c
r65381 r68890 5286 5286 static HMODULE loadSystemDll(const char *pszName) 5287 5287 { 5288 #ifndef DEBUG 5288 5289 char szPath[MAX_PATH]; 5289 5290 UINT cchPath = GetSystemDirectoryA(szPath, sizeof(szPath)); … … 5294 5295 memcpy(&szPath[cchPath + 1], pszName, cbName); 5295 5296 return LoadLibraryA(szPath); 5297 #else 5298 return LoadLibraryA(pszName); 5299 #endif 5296 5300 } 5297 5301 -
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.

