~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/definitions.h

Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
 
31
31
#include <stdint.h>
32
32
 
 
33
namespace drizzled
 
34
{
 
35
 
33
36
/* These paths are converted to other systems (WIN95) before use */
34
37
 
35
38
#define LANGUAGE        "english/"
37
40
#define LOG_PREFIX      "ML"
38
41
#define PROGDIR         "bin/"
39
42
 
40
 
#define ER(X) error_message((X))
 
43
#define ER(X) ::drizzled::error_message((X))
41
44
 
42
45
#define LIBLEN FN_REFLEN-FN_LEN                 /* Max l{ngd p} dev */
43
46
/* extra 4+4 bytes for slave tmp tables */
421
424
#define HA_MRR_USE_DEFAULT_IMPL 64
422
425
 
423
426
typedef int myf;
424
 
#define MYF(v)          (myf) (v)
 
427
#define MYF(v)          (static_cast<drizzled::myf>(v))
425
428
 
426
429
#define MY_I_S_MAYBE_NULL 1
427
430
#define MY_I_S_UNSIGNED   2
676
679
# define _DTRACE_VERSION 0
677
680
#endif
678
681
 
 
682
} /* namespace drizzled */
 
683
 
679
684
#endif /* DRIZZLED_DEFINITIONS_H */