added submodules, minor updates

This commit is contained in:
thorium1256
2026-05-24 11:17:37 +03:00
parent ff0f10295a
commit 167da3dd0e
11 changed files with 77 additions and 585 deletions

17
include/IRC/IRC_events.h Normal file
View File

@@ -0,0 +1,17 @@
#ifndef IRC_EVENTS_H
#define IRC_EVENTS_H
typedef enum
{
IRC_EVENT_PRIVMSG,
IRC_EVENT_NOTICE,
IRC_EVENT_JOIN,
IRC_EVENT_PART,
IRC_EVENT_QUIT,
IRC_EVENT_MODESET,
IRC_EVENT_AWAY,
IRC_EVENT_KICK
} irc_event_type_t;
#endif