~bilalakhtar/ubuntu/maverick/gpsdrive/gpsdrive-fix-325288

« back to all changes in this revision

Viewing changes to src/mysql/mysql.h

  • Committer: Bazaar Package Importer
  • Author(s): Steve Langasek
  • Date: 2006-02-20 01:00:45 UTC
  • mfrom: (3.1.1 etch)
  • Revision ID: james.westby@ubuntu.com-20060220010045-mc22al3lhh3rr4k8
Tags: 2.09-2.1
* Non-maintainer upload.
* Build-depend on libmysqlclient15-dev instead of the obsolete
  libmysqlclient10-dev which should be removed for etch; requires minor
  source changes due to changed library name and a small ABI change.
  Closes: #343815.

Show diffs side-by-side

added added

removed removed

Lines of Context:
229
229
                                           const char *db,
230
230
                                           unsigned int port,
231
231
                                           const char *unix_socket,
232
 
                                           unsigned int clientflag);
 
232
                                           unsigned long clientflag);
233
233
#else
234
234
MYSQL *         STDCALL mysql_real_connect(MYSQL *mysql, const char *host,
235
235
                                           const char *user,
236
236
                                           const char *passwd,
237
237
                                           unsigned int port,
238
238
                                           const char *unix_socket,
239
 
                                           unsigned int clientflag);
 
239
                                           unsigned long clientflag);
240
240
#endif
241
241
void            STDCALL mysql_close(MYSQL *sock);
242
242
int             STDCALL mysql_select_db(MYSQL *mysql, const char *db);