]> git.ipfire.org Git - thirdparty/open-vm-tools.git/commitdiff
Changes in shared code that don't affect open-vm-tools functionality.
authorVMware, Inc <>
Tue, 26 Apr 2011 21:10:38 +0000 (14:10 -0700)
committerMarcelo Vanzin <mvanzin@vmware.com>
Tue, 26 Apr 2011 21:10:38 +0000 (14:10 -0700)
Signed-off-by: Marcelo Vanzin <mvanzin@vmware.com>
open-vm-tools/lib/include/msgList.h

index 67f0c99d20f569ebdf1cd706239149298abfbca1..c5a1b2e466def85606a6ba91783d641100f1b44c 100644 (file)
@@ -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);