Changeset 11814 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Aug 29, 2008 12:47:44 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Display/debug.c
r4027 r11814 71 71 } 72 72 73 #endif 74 73 75 ULONG __cdecl DbgPrint(PCH pszFormat, ...) 74 76 { 77 #ifdef LOG_ENABLED 75 78 va_list args; 76 79 va_start(args, pszFormat); 77 # ifdef VBOX80 # ifdef VBOX 78 81 RTLogBackdoorPrintfV(pszFormat, args); 79 # else82 # else 80 83 EngDebugPrint(STANDARD_DEBUG_PREFIX, pszFormat, args); 81 # endif84 # endif 82 85 va_end(args); 86 #endif 83 87 return 0; 84 88 } 85 89 86 #endif87
Note:
See TracChangeset
for help on using the changeset viewer.