~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_sys.h

  • Committer: Brian Aker
  • Date: 2008-08-07 16:29:49 UTC
  • mfrom: (264.1.20 codestyle)
  • Revision ID: brian@tangent.org-20080807162949-7o8eyjgdn8ms3n1a
Merge from Monty.

Show diffs side-by-side

added added

removed removed

Lines of Context:
178
178
extern ulong my_thread_stack_size;
179
179
 
180
180
/* charsets */
181
 
extern CHARSET_INFO *default_charset_info;
 
181
extern const CHARSET_INFO *default_charset_info;
182
182
extern CHARSET_INFO *all_charsets[256];
183
183
extern CHARSET_INFO compiled_charsets[];
184
184
 
814
814
extern uint get_collation_number(const char *name);
815
815
extern const char *get_charset_name(uint cs_number);
816
816
 
817
 
extern CHARSET_INFO *get_charset(uint cs_number, myf flags);
818
 
extern CHARSET_INFO *get_charset_by_name(const char *cs_name, myf flags);
819
 
extern CHARSET_INFO *get_charset_by_csname(const char *cs_name,
820
 
                                           uint cs_flags, myf my_flags);
 
817
extern const CHARSET_INFO *get_charset(uint cs_number, myf flags);
 
818
extern const CHARSET_INFO *get_charset_by_name(const char *cs_name, myf flags);
 
819
extern const CHARSET_INFO *get_charset_by_csname(const char *cs_name,
 
820
                                                                     uint cs_flags, myf my_flags);
821
821
 
822
822
extern bool resolve_charset(const char *cs_name,
823
 
                               CHARSET_INFO *default_cs,
824
 
                               CHARSET_INFO **cs);
 
823
                            const CHARSET_INFO *default_cs,
 
824
                            const CHARSET_INFO **cs);
825
825
extern bool resolve_collation(const char *cl_name,
826
 
                                 CHARSET_INFO *default_cl,
827
 
                                 CHARSET_INFO **cl);
 
826
                             const CHARSET_INFO *default_cl,
 
827
                             const CHARSET_INFO **cl);
828
828
 
829
829
extern void free_charsets(void);
830
830
extern char *get_charsets_dir(char *buf);