comparison src/protocols/sametime/meanwhile/mw_st_list.h @ 12323:fc464a0abccc

[gaim-migrate @ 14627] Function prototypes need to be of the form foo(void); instead of foo(); for function that don't take any arguments. This allows the compiler to detect mistakes were someone passes arguments to such a function. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Sun, 04 Dec 2005 18:19:56 +0000
parents 3ef77720e577
children
comparison
equal deleted inserted replaced
12322:c7ae1fd0827d 12323:fc464a0abccc
63 Represents a user in a group in a buddy list */ 63 Represents a user in a group in a buddy list */
64 struct mwSametimeUser; 64 struct mwSametimeUser;
65 65
66 66
67 /** Create a new list */ 67 /** Create a new list */
68 struct mwSametimeList *mwSametimeList_new(); 68 struct mwSametimeList *mwSametimeList_new(void);
69 69
70 70
71 /** Free the list, all of its groups, and all of the groups' members */ 71 /** Free the list, all of its groups, and all of the groups' members */
72 void mwSametimeList_free(struct mwSametimeList *l); 72 void mwSametimeList_free(struct mwSametimeList *l);
73 73