~drizzle-trunk/drizzle/development

1878.3.2 by Monty Taylor
Split out show_type into its own header and made sys_var work through
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
 *
1999.6.1 by kalebral at gmail
update Copyright strings to a more common format to help with creating the master debian copyright file
4
 *  Copyright (C) 2008 Sun Microsystems, Inc.
1878.3.2 by Monty Taylor
Split out show_type into its own header and made sys_var work through
5
 *
6
 *  This program is free software; you can redistribute it and/or modify
7
 *  it under the terms of the GNU General Public License as published by
8
 *  the Free Software Foundation; version 2 of the License.
9
 *
10
 *  This program is distributed in the hope that it will be useful,
11
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 *  GNU General Public License for more details.
14
 *
15
 *  You should have received a copy of the GNU General Public License
16
 *  along with this program; if not, write to the Free Software
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
 */
19
2234 by Brian Aker
Mass removal of ifdef/endif in favor of pragma once.
20
#pragma once
1878.3.2 by Monty Taylor
Split out show_type into its own header and made sys_var work through
21
22
namespace drizzled
23
{
24
25
/*
26
  declarations for SHOW STATUS support in plugins
27
*/
28
typedef enum enum_drizzle_show_type
29
{
30
  SHOW_UNDEF, SHOW_BOOL, SHOW_INT, SHOW_LONG,
31
  SHOW_LONGLONG, SHOW_CHAR, SHOW_CHAR_PTR,
32
  SHOW_FUNC,
33
  SHOW_LONG_STATUS, SHOW_DOUBLE_STATUS,
34
  SHOW_MY_BOOL, SHOW_HA_ROWS, SHOW_SYS, SHOW_INT_NOFLUSH,
35
  SHOW_LONGLONG_STATUS, SHOW_DOUBLE, SHOW_SIZE
36
} SHOW_TYPE;
37
38
struct drizzle_show_var {
39
  const char *name;
40
  char *value;
41
  SHOW_TYPE type;
42
};
43
44
45
static const int SHOW_VAR_FUNC_BUFF_SIZE= 1024;
46
typedef int (*drizzle_show_var_func)(drizzle_show_var *, char *);
47
48
struct st_show_var_func_container
49
{
50
  drizzle_show_var_func func;
51
};
52
53
}
54