~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/charset.h

  • Committer: Lee Bieber
  • Date: 2011-02-11 20:30:05 UTC
  • mfrom: (2157.1.3 build)
  • Revision ID: kalebral@gmail.com-20110211203005-757o1y2yf78dxzqr
Merge Stewart - 716848: drizzleimport displays wrong program_name
Merge Stewart - update README file
Merge Andrew and Joe - Exposes the InnoDB SYS_REPLICATION_LOG to data_dictionary so that it is fast and fixes many issues we have been having

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#define DRIZZLED_CHARSET_H
22
22
 
23
23
#include <cstddef>
24
 
#include <drizzled/definitions.h>
 
24
#include "drizzled/definitions.h"
25
25
 
26
 
#include <drizzled/visibility.h>
 
26
#include "drizzled/visibility.h"
27
27
 
28
28
namespace drizzled
29
29
{
33
33
extern DRIZZLED_API CHARSET_INFO *all_charsets[256];
34
34
extern CHARSET_INFO compiled_charsets[];
35
35
 
 
36
/* character sets */
 
37
void *cs_alloc(size_t size);
 
38
 
36
39
extern uint32_t get_charset_number(const char *cs_name, uint32_t cs_flags);
37
40
extern uint32_t get_collation_number(const char *name);
38
41
extern const char *get_charset_name(uint32_t cs_number);