Changeset 39606 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Dec 14, 2011 11:23:58 AM (13 years ago)
- Location:
- trunk/src/VBox/Additions/WINNT/Graphics/Video/disp
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Video/disp/wddm/VBoxDispDbg.h
r39160 r39606 41 41 # define VBOXWDDMDISP_DEBUG_PRINT 42 42 /* adds vectored exception handler to be able to catch non-debug UM exceptions in kernel debugger */ 43 # define VBOXWDDMDISP_DEBUG_VEHANDLER43 //# define VBOXWDDMDISP_DEBUG_VEHANDLER 44 44 /* disable shared resource creation with wine */ 45 45 //# define VBOXWDDMDISP_DEBUG_NOSHARED -
trunk/src/VBox/Additions/WINNT/Graphics/Video/disp/xpdm/VBoxDispDriverDDraw.cpp
r38840 r39606 77 77 { 78 78 rc = VBoxDispVHWAInitHostInfo1(pDev); 79 VBOX_WARNRC (rc);79 VBOX_WARNRC_NOBP(rc); 80 80 } 81 81 -
trunk/src/VBox/Additions/WINNT/Graphics/Video/disp/xpdm/VBoxDispInternal.h
r36867 r39606 89 89 } while (0) 90 90 91 #define VBOX_WARNRC_NOBP(_rc) \ 92 do { \ 93 if (RT_FAILURE(_rc)) \ 94 { \ 95 WARN_NOBP(("RT_FAILURE rc(%#x)", _rc)); \ 96 } \ 97 } while (0) 98 99 91 100 #define VBOX_WARN_IOCTLCB_RETRC(_ioctl, _cbreturned, _cbexpected, _rc) \ 92 101 do { \
Note:
See TracChangeset
for help on using the changeset viewer.