added mysql connector
[NeonServV5.git] / mysqlConn.h
1 #ifndef _MySQLConn_h
2 #define _MySQLConn_h
3
4 #include "main.h"
5 #include <mysql.h>
6
7 MYSQL *getMySQL();
8 void check_mysql();
9 MYSQL_RES *mysql_use();
10 void mysql_free();
11 void init_mysql();
12 void free_mysql();
13
14 #endif