~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libdrizzle/drizzle_com.h

  • Committer: Brian Aker
  • Date: 2008-08-10 16:57:26 UTC
  • Revision ID: brian@tangent.org-20080810165726-mc1660l11a5vkv69
libdrizzle has ulong removed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
515
515
 
516
516
/** @TODO Is it necessary to include all of drizzled/global.h here? */
517
517
#ifdef DRIZZLE_SERVER_GLOBAL_H
518
 
ulong STDCALL net_field_length(uchar **packet);
 
518
uint32_t STDCALL net_field_length(uchar **packet);
519
519
uint64_t net_field_length_ll(uchar **packet);
520
520
uchar *net_store_length(uchar *pkg, uint64_t length);
521
521
#endif
524
524
}
525
525
#endif
526
526
 
527
 
#define NULL_LENGTH ((unsigned long) ~0) /* For net_store_length */
 
527
#define NULL_LENGTH UINT32_MAX /* For net_store_length */
528
528
#define MYSQL_STMT_HEADER       4
529
529
#define MYSQL_LONG_DATA_HEADER  6
530
530