~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/global_charset_info.h

  • Committer: Lee Bieber
  • Date: 2010-11-07 19:34:48 UTC
  • mfrom: (1910.1.2 build)
  • Revision ID: kalebral@gmail.com-20101107193448-64kdu912qej354sh
Merge Stewart - including adapting and expanding the "differences from mysql" page from the wiki.
Merge Stewart - fix bug 668143: drizzleslap with --commit runs second iteration data load in a transaction

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2009 Sun Microsystems, Inc.
 
4
 *  Copyright (C) 2009 Sun Microsystems
5
5
 *
6
6
 *  This program is free software; you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
21
21
#ifndef DRIZZLED_GLOBAL_CHARSET_INFO_H
22
22
#define DRIZZLED_GLOBAL_CHARSET_INFO_H
23
23
 
24
 
#include "drizzled/visibility.h"
25
 
 
26
24
namespace drizzled
27
25
{
28
26
 
29
 
struct charset_info_st;
 
27
typedef struct charset_info_st CHARSET_INFO;
30
28
 
31
29
/*
32
30
  External variables
33
31
*/
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;
 
32
extern const CHARSET_INFO *default_charset_info;
 
33
extern const CHARSET_INFO *system_charset_info;
 
34
extern const CHARSET_INFO *files_charset_info;
 
35
extern const CHARSET_INFO *table_alias_charset;
38
36
 
39
37
} /* namespace drizzled */
40
38