Changeset 25536 in vbox for trunk/src/VBox/Runtime/common/misc/RTAssertMsg2Add.cpp
- Timestamp:
- Dec 21, 2009 11:06:08 AM (15 years ago)
- File:
-
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/misc/RTAssertMsg2Add.cpp
r25534 r25536 1 1 /* $Id$ */ 2 2 /** @file 3 * IPRT - RTAssertMsg2 .3 * IPRT - RTAssertMsg2Add. 4 4 */ 5 5 6 6 /* 7 * Copyright (C) 2008 Sun Microsystems, Inc.7 * Copyright (C) 2008-2009 Sun Microsystems, Inc. 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 39 39 40 40 41 RTDECL(void) RTAssertMsg2 (const char *pszFormat, ...)41 RTDECL(void) RTAssertMsg2Add(const char *pszFormat, ...) 42 42 { 43 43 va_list va; 44 44 va_start(va, pszFormat); 45 RTAssertMsg2 V(pszFormat, va);45 RTAssertMsg2AddV(pszFormat, va); 46 46 va_end(va); 47 47 } 48 RT_EXPORT_SYMBOL(RTAssertMsg2 );48 RT_EXPORT_SYMBOL(RTAssertMsg2Add); 49 49
Note:
See TracChangeset
for help on using the changeset viewer.