Changeset 3223 in vbox
- Timestamp:
- Jun 21, 2007 8:16:09 PM (17 years ago)
- Location:
- trunk/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/log.h
r3075 r3223 387 387 } 388 388 389 390 __BEGIN_DECLS391 392 /**393 * Prints a formatted string to the backdoor port.394 *395 * @returns Number of bytes written.396 * @param pszFormat Format string.397 * @param ... Optional arguments specified in the format string.398 */399 RTDECL(size_t) RTLogBackdoorPrintf(const char *pszFormat, ...);400 401 /**402 * Prints a formatted string to the backdoor port.403 *404 * @returns Number of bytes written.405 * @param pszFormat Format string.406 * @param args Optional arguments specified in the format string.407 */408 RTDECL(size_t) RTLogBackdoorPrintfV(const char *pszFormat, va_list args);409 410 __END_DECLS411 412 389 /** @} */ 413 390 #endif -
trunk/include/iprt/log.h
r3086 r3223 1459 1459 RTDECL(void) RTLogWriteStdErr(const char *pach, size_t cb); 1460 1460 1461 #ifdef VBOX 1462 1463 /** 1464 * Prints a formatted string to the backdoor port. 1465 * 1466 * @returns Number of bytes written. 1467 * @param pszFormat Format string. 1468 * @param ... Optional arguments specified in the format string. 1469 */ 1470 RTDECL(size_t) RTLogBackdoorPrintf(const char *pszFormat, ...); 1471 1472 /** 1473 * Prints a formatted string to the backdoor port. 1474 * 1475 * @returns Number of bytes written. 1476 * @param pszFormat Format string. 1477 * @param args Optional arguments specified in the format string. 1478 */ 1479 RTDECL(size_t) RTLogBackdoorPrintfV(const char *pszFormat, va_list args); 1480 1481 #endif /* VBOX */ 1461 1482 1462 1483 __END_DECLS
Note:
See TracChangeset
for help on using the changeset viewer.