This commit is contained in:
Lukian LEIZOUR 2023-11-26 22:16:14 +01:00
parent 6c8e100c6c
commit 555dcd39b7
6 changed files with 113 additions and 3 deletions

5
conf.h
View file

@ -47,5 +47,10 @@ int findListenerId(ptListener listenerChain);
ptListener newListenerChain();
void addListener(ptListener listenerChain, int id, char name[], int age, int level);
void removeListener(ptListener listenerChain, int id);
void addConfToConfList(ptConfList confList, ptConf conf);
void printConfList(ptConfList confList);
void addListenerToListenerList(ptListenerList listenerList, ptListener listener);
void printListenerList(ptListenerList listenerList);
void participateToConf(ptConf confChain, ptListener listenerChain, int confId, int listenerId);
#endif // CONF_H