quote-bot/data.h

29 lines
458 B
C
Raw Permalink Normal View History

2021-03-08 23:16:14 -05:00
#ifndef DATA_H
#define DATA_H
#include <sqlite3.h>
#include <libircclient.h>
2021-03-08 23:16:14 -05:00
/*
* We store data in IRC session context.
*/
struct irc_ctx_t {
unsigned short port;
2021-03-08 23:16:14 -05:00
char *channel;
char *nick;
char *server;
sqlite3 * db;
};
2021-03-08 23:16:14 -05:00
/*
* Params that we give to our threads.
*/
struct spam_params_t {
2021-03-08 23:16:14 -05:00
irc_session_t *session;
const char *phrase;
const char *channel;
2021-03-12 12:41:17 -05:00
float timer;
};
2021-03-08 23:16:14 -05:00
#endif /* DATA_H */