~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin.h

  • Committer: Brian Aker
  • Date: 2011-04-21 06:25:01 UTC
  • mfrom: (2283.2.2 drizzle-ga)
  • Revision ID: brian@tangent.org-20110421062501-ar72kil0t91mp01q
Rollup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
75
75
*/
76
76
 
77
77
 
78
 
#define PLUGIN_VAR_BOOL         0x0001
79
 
#define PLUGIN_VAR_INT          0x0002
80
 
#define PLUGIN_VAR_LONG         0x0003
81
 
#define PLUGIN_VAR_LONGLONG     0x0004
82
 
#define PLUGIN_VAR_STR          0x0005
83
 
#define PLUGIN_VAR_UNSIGNED     0x0080
84
 
#define PLUGIN_VAR_SessionLOCAL     0x0100 /* Variable is per-connection */
85
78
#define PLUGIN_VAR_READONLY     0x0200 /* Server variable is read only */
86
 
#define PLUGIN_VAR_NOSYSVAR     0x0400 /* Not a server variable */
87
 
#define PLUGIN_VAR_NOCMDOPT     0x0800 /* Not a command line option */
88
 
#define PLUGIN_VAR_NOCMDARG     0x1000 /* No argument for cmd line */
89
 
#define PLUGIN_VAR_RQCMDARG     0x0000 /* Argument required for cmd line */
90
79
#define PLUGIN_VAR_OPCMDARG     0x2000 /* Argument optional for cmd line */
91
80
#define PLUGIN_VAR_MEMALLOC     0x8000 /* String needs memory allocated */
92
81