~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/common_includes.h

  • Committer: Brian Aker
  • Date: 2008-10-06 06:47:29 UTC
  • Revision ID: brian@tangent.org-20081006064729-2i9mhjkzyvow9xsm
RemoveĀ uint.

Show diffs side-by-side

added added

removed removed

Lines of Context:
318
318
 */
319
319
#if defined DRIZZLE_SERVER || defined INNODB_COMPATIBILITY_HOOKS
320
320
bool check_global_access(THD *thd, ulong want_access);
321
 
int get_quote_char_for_identifier(THD *thd, const char *name, uint length);
 
321
int get_quote_char_for_identifier(THD *thd, const char *name, uint32_t length);
322
322
extern struct system_variables global_system_variables;
323
 
extern uint mysql_data_home_len;
 
323
extern uint32_t mysql_data_home_len;
324
324
extern char *mysql_data_home,server_version[SERVER_VERSION_LENGTH],
325
325
            mysql_real_data_home[], mysql_unpacked_real_data_home[];
326
326
extern const CHARSET_INFO *character_set_filesystem;
327
327
extern char reg_ext[FN_EXTLEN];
328
 
extern uint reg_ext_length;
 
328
extern uint32_t reg_ext_length;
329
329
extern ulong specialflag;
330
 
extern uint lower_case_table_names;
331
 
uint strconvert(const CHARSET_INFO *from_cs, const char *from,
332
 
                const CHARSET_INFO *to_cs, char *to, uint to_length,
333
 
                uint *errors);
334
 
uint filename_to_tablename(const char *from, char *to, uint to_length);
335
 
uint tablename_to_filename(const char *from, char *to, uint to_length);
 
330
extern uint32_t lower_case_table_names;
 
331
uint32_t strconvert(const CHARSET_INFO *from_cs, const char *from,
 
332
                const CHARSET_INFO *to_cs, char *to, uint32_t to_length,
 
333
                uint32_t *errors);
 
334
uint32_t filename_to_tablename(const char *from, char *to, uint32_t to_length);
 
335
uint32_t tablename_to_filename(const char *from, char *to, uint32_t to_length);
336
336
#endif /* DRIZZLE_SERVER || INNODB_COMPATIBILITY_HOOKS */
337
337
 
338
338