Changeset 52437 in vbox for trunk/src/VBox/GuestHost/OpenGL
- Timestamp:
- Aug 21, 2014 10:40:36 AM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 95641
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/VBox-4.3 merged: 95640
- Property svn:mergeinfo changed
-
trunk/src/VBox
- Property svn:mergeinfo changed
/branches/VBox-4.3/src/VBox merged: 95640
- Property svn:mergeinfo changed
-
trunk/src/VBox/GuestHost/OpenGL/spu_loader/spuload.c
r43140 r52437 96 96 path = __findDLL( name, dir ); 97 97 the_spu->dll = crDLLOpen( path, 0/*resolveGlobal*/ ); 98 #if defined(DEBUG_misha) && defined(RT_OS_WINDOWS) 99 crDbgCmdSymLoadPrint(path, the_spu->dll->hinstLib); 100 #endif 98 101 the_spu->entry_point = 99 102 (SPULoadFunction) crDLLGetNoError( the_spu->dll, SPU_ENTRY_POINT_NAME ); -
trunk/src/VBox/GuestHost/OpenGL/util/error.c
r52352 r52437 585 585 va_end( args ); 586 586 } 587 588 #if defined(DEBUG_misha) && defined(RT_OS_WINDOWS) 589 BOOL WINAPI DllMain(HINSTANCE hDLLInst, DWORD fdwReason, LPVOID lpvReserved) 590 { 591 (void) lpvReserved; 592 593 switch (fdwReason) 594 { 595 case DLL_PROCESS_ATTACH: 596 { 597 char aName[MAX_PATH]; 598 GetModuleFileNameA(hDLLInst, aName, RT_ELEMENTS(aName)); 599 crDbgCmdSymLoadPrint(aName, hDLLInst); 600 break; 601 } 602 default: 603 break; 604 } 605 606 return TRUE; 607 } 608 #endif
Note:
See TracChangeset
for help on using the changeset viewer.