~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libdrizzle/libdrizzle.c

  • Committer: Grant Limberg
  • Date: 2008-08-12 21:13:01 UTC
  • mto: (322.1.1 codestyle)
  • mto: This revision was merged to the branch mainline in revision 324.
  • Revision ID: grant@glsoftware.net-20080812211301-ym3wsowelkgp16s2
renamed all instances of MYSQL_ to DRIZZLE_

Show diffs side-by-side

added added

removed removed

Lines of Context:
467
467
const char *
468
468
drizzle_get_client_info(void)
469
469
{
470
 
  return (char*) MYSQL_SERVER_VERSION;
 
470
  return (char*) DRIZZLE_SERVER_VERSION;
471
471
}
472
472
 
473
473
uint32_t drizzle_get_client_version(void)
474
474
{
475
 
  return MYSQL_VERSION_ID;
 
475
  return DRIZZLE_VERSION_ID;
476
476
}
477
477
 
478
478
bool drizzle_eof(const DRIZZLE_RES *res)