~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/show.h

  • Committer: Monty Taylor
  • Date: 2011-01-26 19:15:55 UTC
  • mto: This revision was merged to the branch mainline in revision 2126.
  • Revision ID: mordred@inaugust.com-20110126191555-nq5nnzyscvngsip2
Turns on -fvisibility=hidden by default. Symbols intended to be used by
plugins need to be marked with DRIZZLED_API.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
#include "drizzled/sql_parse.h"
35
35
#include "drizzled/plugin.h"
36
36
 
 
37
#include "drizzled/visibility.h"
 
38
 
37
39
namespace drizzled
38
40
{
39
41
 
51
53
int wild_case_compare(const CHARSET_INFO * const cs, 
52
54
                      const char *str,const char *wildstr);
53
55
 
54
 
int get_quote_char_for_identifier();
 
56
DRIZZLED_API int get_quote_char_for_identifier();
55
57
 
56
58
namespace show {
57
59