]> jfr.im git - irc/quakenet/newserv.git/blame - pqsql/pqsql.h
Refactored noperserv pqsql functionality into its own module.
[irc/quakenet/newserv.git] / pqsql / pqsql.h
CommitLineData
e43481af
CP
1#ifndef __PQSQL_DB_H
2#define __PQSQL_DB_H
3
4#include <libpq-fe.h>
5
6typedef void (*PQQueryHandler)(PGconn *, void *);
7
8void pqasyncquery(PQQueryHandler handler, void *tag, char *format, ...);
9#define pqquery(format, ...) pqasyncquery(NULL, NULL, format, __VA_ARGS__)
10void pqsyncquery(char *format, ...);
11int pqconnected(void);
12
13#endif