~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_locale.h

  • Committer: Monty Taylor
  • Date: 2008-09-16 00:00:48 UTC
  • mto: This revision was merged to the branch mainline in revision 391.
  • Revision ID: monty@inaugust.com-20080916000048-3rvrv3gv9l0ad3gs
Fixed copyright headers in drizzled/

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
typedef struct my_locale_st
24
24
{
25
 
  uint32_t  number;
 
25
  uint  number;
26
26
  const char *name;
27
27
  const char *description;
28
28
  const bool is_ascii;
31
31
  TYPELIB *day_names;
32
32
  TYPELIB *ab_day_names;
33
33
#ifdef __cplusplus 
34
 
  my_locale_st(uint32_t number_par,
 
34
  my_locale_st(uint number_par,
35
35
               const char *name_par, const char *descr_par, bool is_ascii_par,
36
36
               TYPELIB *month_names_par, TYPELIB *ab_month_names_par,
37
37
               TYPELIB *day_names_par, TYPELIB *ab_day_names_par) : 
48
48
extern MY_LOCALE *my_default_lc_time_names;
49
49
 
50
50
MY_LOCALE *my_locale_by_name(const char *name);
51
 
MY_LOCALE *my_locale_by_number(uint32_t number);
 
51
MY_LOCALE *my_locale_by_number(uint number);
52
52
 
53
53
#endif /* DRIZZLE_SERVER_LOCALE_H */