Changeset 68859 in vbox for trunk/src/VBox/Additions/WINNT/Graphics
- Timestamp:
- Sep 25, 2017 4:23:02 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Video/disp/wddm/VBoxDispD3DIf.cpp
r63018 r68859 39 39 static HMODULE loadSystemDll(const char *pszName) 40 40 { 41 /* Assumed here that DEBUG version of VBoxDispD3D.dll will not be installed system wide 42 but will be loaded from local folder of an application being debugged. */ 43 #ifndef DEBUG 41 44 char szPath[MAX_PATH]; 42 45 UINT cchPath = GetSystemDirectoryA(szPath, sizeof(szPath)); … … 50 53 memcpy(&szPath[cchPath + 1], pszName, cbName); 51 54 return LoadLibraryA(szPath); 55 #else 56 return LoadLibraryA(pszName); 57 #endif 52 58 } 53 59
Note:
See TracChangeset
for help on using the changeset viewer.