~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/protocol.h

  • Committer: Brian Aker
  • Date: 2008-07-13 22:21:51 UTC
  • Revision ID: brian@tangent.org-20080713222151-fv2tcpbsc829j2oc
Ulonglong to uint64_t

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
  { return store_long((longlong) from); }
57
57
  inline  bool store(longlong from)
58
58
  { return store_longlong((longlong) from, 0); }
59
 
  inline  bool store(ulonglong from)
 
59
  inline  bool store(uint64_t from)
60
60
  { return store_longlong((longlong) from, 1); }
61
61
  inline bool store(String *str)
62
62
  { return store((char*) str->ptr(), str->length(), str->charset()); }