~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/global_charset_info.h

  • Committer: Brian Aker
  • Date: 2011-02-10 22:27:27 UTC
  • mto: This revision was merged to the branch mainline in revision 2161.
  • Revision ID: brian@tangent.org-20110210222727-2k06yyx4r0fgiuzx
Update headers (more removal of session).

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
namespace drizzled
27
27
{
28
28
 
29
 
typedef struct charset_info_st CHARSET_INFO;
 
29
struct charset_info_st;
30
30
 
31
31
/*
32
32
  External variables
33
33
*/
34
 
extern DRIZZLED_API const CHARSET_INFO *default_charset_info;
35
 
extern DRIZZLED_API const CHARSET_INFO *system_charset_info;
36
 
extern const CHARSET_INFO *files_charset_info;
37
 
extern const CHARSET_INFO *table_alias_charset;
 
34
extern DRIZZLED_API const charset_info_st *default_charset_info;
 
35
extern DRIZZLED_API const charset_info_st *system_charset_info;
 
36
extern const charset_info_st *files_charset_info;
 
37
extern const charset_info_st *table_alias_charset;
38
38
 
39
39
} /* namespace drizzled */
40
40