From: VMware, Inc <> Date: Tue, 26 Apr 2011 21:10:38 +0000 (-0700) Subject: Changes in shared code that don't affect open-vm-tools functionality. X-Git-Tag: 2011.04.25-402641~27 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2d4736d41b937ba404fcc3ef36f46d97366dc096;p=thirdparty%2Fopen-vm-tools.git Changes in shared code that don't affect open-vm-tools functionality. Signed-off-by: Marcelo Vanzin --- diff --git a/open-vm-tools/lib/include/msgList.h b/open-vm-tools/lib/include/msgList.h index 67f0c99d2..c5a1b2e46 100644 --- a/open-vm-tools/lib/include/msgList.h +++ b/open-vm-tools/lib/include/msgList.h @@ -1,5 +1,5 @@ /********************************************************* - * Copyright (C) 2009 VMware, Inc. All rights reserved. + * Copyright (C) 2009-2011 VMware, Inc. All rights reserved. * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -57,6 +57,9 @@ struct MsgList { EXTERN MsgList *MsgList_Create(const char *idFmt, ...); EXTERN MsgList *MsgList_VCreate(const char *idFmt, va_list args); +EXTERN void MsgList_Append(MsgList **tail, const char *idFmt, ...); +EXTERN void MsgList_VAppend(MsgList **tail, const char *idFmt, va_list args); + EXTERN void MsgList_Log(const MsgList *messages); EXTERN char *MsgList_ToString(const MsgList *messages); EXTERN MsgList *MsgList_Copy(const MsgList *src);