~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/my_getopt.h

  • Committer: Monty Taylor
  • Date: 2009-12-23 08:42:15 UTC
  • mto: This revision was merged to the branch mainline in revision 1253.
  • Revision ID: mordred@inaugust.com-20091223084215-7f48eb2611l2e4vj
Dear god. I think we're not including anything from mysys in drizzled anymore.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
#ifndef DRIZZLED_MY_GETOPT_H
17
17
#define DRIZZLED_MY_GETOPT_H
18
18
 
19
 
#include "mysys/my_sys.h"
 
19
#include "drizzled/typelib.h"
20
20
 
21
21
#define GET_NO_ARG     1
22
22
#define GET_BOOL       2
44
44
extern "C" {
45
45
#endif
46
46
 
 
47
enum loglevel {
 
48
   ERROR_LEVEL,
 
49
   WARNING_LEVEL,
 
50
   INFORMATION_LEVEL
 
51
};
 
52
 
47
53
enum get_opt_arg_type { NO_ARG, OPT_ARG, REQUIRED_ARG };
48
54
 
49
55
struct st_typelib;