Nebula/src/userlist.h
Mid Favila 0e9ed3e250 Start work on eliminating redundant variable usage. Prevent
an I-bar from showing up on the output frame. Move the copyright
notice out to a header file.
2022-08-21 21:35:28 -04:00

14 lines
647 B
C

/* --------------------------------------------------------------------- *
* userlist.h *
* --------------------------------------------------------------------- *
* This file is part of the nebula irc client *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include <Xm/Xm.h>
void addUserToList(char *nick, Widget listWidget);
void removeUserFromList(char *nick, Widget listWidget);
void renameUserInList(char *oldNick, char *newNick, Widget listWidget);
void removeAllUsersFromList(Widget listWidget);
#include "copyright.h"