Changeset 4249 in vbox for trunk/src/VBox
- Timestamp:
- Aug 20, 2007 8:18:41 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 23756
- Location:
- trunk/src/VBox/HostDrivers/Support
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPDRVIOC.h
r4071 r4249 175 175 * The upper 16-bit is the major version, the the lower the minor version. 176 176 * When incompatible changes are made, the upper major number has to be changed. */ 177 #define SUPDRVIOC_VERSION 0x0005000 0177 #define SUPDRVIOC_VERSION 0x00050001 178 178 179 179 /** SUP_IOCTL_COOKIE Input. */ -
trunk/src/VBox/HostDrivers/Support/SUPDRVShared.c
r4225 r4249 132 132 { "RTLogLoggerEx", (void *)RTLogLoggerEx }, 133 133 { "RTLogLoggerExV", (void *)RTLogLoggerExV }, 134 { "RTLogPrintf", (void *)RTLogPrintf }, 135 { "RTLogPrintfV", (void *)RTLogPrintfV }, 134 136 { "AssertMsg1", (void *)AssertMsg1 }, 135 137 { "AssertMsg2", (void *)AssertMsg2 }, … … 4450 4452 { 4451 4453 } 4454 4455 /** 4456 * Stub function for non-debug builds. 4457 */ 4458 RTDECL(void) RTLogPrintf(const char *pszFormat, ...) 4459 { 4460 } 4461 4462 /** 4463 * Stub function for non-debug builds. 4464 */ 4465 RTDECL(void) RTLogPrintfV(const char *pszFormat, va_list args) 4466 { 4467 } 4452 4468 #endif /* !DEBUG */ 4453 4469 -
trunk/src/VBox/HostDrivers/Support/SUPR0.def
r4071 r4249 6 6 ; 7 7 ; Copyright (C) 2006-2007 innotek GmbH 8 ; 8 ; 9 9 ; This file is part of VirtualBox Open Source Edition (OSE), as 10 10 ; available from http://www.virtualbox.org. This file is free software; … … 60 60 RTLogLoggerEx 61 61 RTLogLoggerExV 62 RTLogPrintf 63 RTLogPrintfV 62 64 AssertMsg1 63 65 AssertMsg2
Note:
See TracChangeset
for help on using the changeset viewer.