--- lbbs/include/database.h 2005/03/21 05:43:43 1.2 +++ lbbs/include/database.h 2025/06/07 06:16:25 1.8 @@ -1,20 +1,33 @@ /*************************************************************************** - database.h - description - ------------------- - begin : Mon Oct 18 2004 - copyright : (C) 2004 by Leaflet - email : leaflet@leafok.com + database.h - description + ------------------- + Copyright : (C) 2004-2025 by Leaflet + Email : leaflet@leafok.com ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * + * the Free Software Foundation; either version 3 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ -#include +#ifndef _DATABASE_H_ +#define _DATABASE_H_ -MYSQL *db_open (); +#include + +#define SQL_BUFFER_LEN 10240 + +// Database +extern char DB_host[256]; +extern char DB_username[50]; +extern char DB_password[50]; +extern char DB_database[50]; +extern char DB_timezone[50]; + +extern MYSQL *db_open(); + +#endif //_DATABASE_H_