home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / mysqlbinlog / mini_client.h < prev    next >
C/C++ Source or Header  |  2000-11-16  |  1KB  |  48 lines

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This program is free software; you can redistribute it and/or modify
  4.    it under the terms of the GNU General Public License as published by
  5.    the Free Software Foundation; either version 2 of the License, or
  6.    (at your option) any later version.
  7.    
  8.    This program is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.    GNU General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU General Public License
  14.    along with this program; if not, write to the Free Software
  15.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  16.  
  17. #ifndef _MINI_CLIENT_H
  18. #define _MINI_CLIENT_H
  19.  
  20.  
  21. MYSQL* STDCALL
  22. mc_mysql_connect(MYSQL *mysql,const char *host, const char *user,
  23.            const char *passwd, const char *db,
  24.          uint port, const char *unix_socket,uint client_flag);
  25.  
  26. int STDCALL
  27. mc_simple_command(MYSQL *mysql,enum enum_server_command command, const char *arg,
  28.           uint length, my_bool skipp_check);
  29. void STDCALL
  30. mc_mysql_close(MYSQL *mysql);
  31.  
  32. MYSQL * STDCALL
  33. mc_mysql_init(MYSQL *mysql);
  34.  
  35. void STDCALL
  36. mc_mysql_debug(const char *debug);
  37.  
  38. uint STDCALL
  39. mc_net_safe_read(MYSQL *mysql);
  40.  
  41. char * STDCALL mc_mysql_error(MYSQL *mysql);
  42. int STDCALL mc_mysql_errno(MYSQL *mysql);
  43. my_bool STDCALL mc_mysql_reconnect(MYSQL* mysql);
  44.  
  45.  
  46. #endif
  47.  
  48.