MLIB
Loading...
Searching...
No Matches
defs.h
1#pragma once
2
3#if defined(_MSC_VER) && !defined(NODEFAULTLIB)
4#pragma comment(lib, "mlib.lib")
5#endif
6
8#define MLIB_LOGFAC (25 << 3)
9
11// #define MLIB_SYSLOG_TRACE 1
12
23// If _TRACE has a numeric value, that becomes the trace level
24#if !defined(MLIB_TRACE_LEVEL) && defined(_TRACE) && (_TRACE + 0 > 0)
25#define MLIB_TRACE_LEVEL _TRACE
26#endif
27
28#ifndef MLIB_TRACE_LEVEL
29#define MLIB_TRACE_LEVEL 7
30#endif
31
32#define SQLITE_ENABLE_COLUMN_METADATA
33
34//Standard types
35typedef unsigned long DWORD;
36typedef int BOOL;
37typedef unsigned char BYTE;
38typedef unsigned short WORD;
39typedef float FLOAT;
40
41typedef int INT;
42typedef unsigned int UINT;
43
44#include <stdint.h>
45#include <stddef.h>