Changeset 5666 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Nov 11, 2007 4:25:51 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/log/logformat.cpp
r5415 r5666 35 35 * Internal Functions * 36 36 *******************************************************************************/ 37 static DECLCALLBACK( int) rtlogFormatStr(void *pvArg, PFNRTSTROUTPUT pfnOutput,38 void *pvArgOutput, const char **ppszFormat,39 va_list *pArgs, int cchWidth, int cchPrecision,40 unsigned fFlags, char chArgSize);37 static DECLCALLBACK(size_t) rtlogFormatStr(void *pvArg, PFNRTSTROUTPUT pfnOutput, 38 void *pvArgOutput, const char **ppszFormat, 39 va_list *pArgs, int cchWidth, int cchPrecision, 40 unsigned fFlags, char chArgSize); 41 41 42 42 … … 74 74 * @param chArgSize The argument size specifier, 'l' or 'L'. 75 75 */ 76 static DECLCALLBACK(int) rtlogFormatStr(void *pvArg, PFNRTSTROUTPUT pfnOutput, void *pvArgOutput, 77 const char **ppszFormat, va_list *pArgs, int cchWidth, int cchPrecision, unsigned fFlags, char chArgSize) 76 static DECLCALLBACK(size_t) rtlogFormatStr(void *pvArg, PFNRTSTROUTPUT pfnOutput, void *pvArgOutput, 77 const char **ppszFormat, va_list *pArgs, int cchWidth, 78 int cchPrecision, unsigned fFlags, char chArgSize) 78 79 { 79 80 char ch = *(*ppszFormat)++;
Note:
See TracChangeset
for help on using the changeset viewer.