From: Oliver Kurth Date: Thu, 3 Oct 2019 00:48:34 +0000 (-0700) Subject: Common header file changes not directly applicable to open-vm-tools. X-Git-Tag: stable-11.1.0~212 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d2c2ec66aaa0abd0c8a91365f5401ecf6d7c982a;p=thirdparty%2Fopen-vm-tools.git Common header file changes not directly applicable to open-vm-tools. --- diff --git a/open-vm-tools/lib/include/log.h b/open-vm-tools/lib/include/log.h index bd05f36fe..95497e6b9 100644 --- a/open-vm-tools/lib/include/log.h +++ b/open-vm-tools/lib/include/log.h @@ -415,6 +415,20 @@ Bool Log_BoundNumFiles(struct LogOutput *output, #define LOG_NO_BPS_LIMIT 0xFFFFFFFF // unlimited input rate +/* + * Assemble a line. + */ + +void *Log_BufBegin(void); + +void Log_BufAppend(void *acc, + const char *fmt, + ...) PRINTF_DECL(2, 3); + +void Log_BufEndLevel(void *acc, + uint32 routing); + + /* * Debugging */