Tizen 2.1 base
[framework/uifw/cbhm.git] / src / common.h
1 #ifndef _common_h_
2 #define _common_h_
3
4 #include <stdio.h>
5 #include <stdlib.h>
6 #include <string.h>
7 #include <unistd.h>
8
9 #define DEBUG 
10
11 #ifdef DEBUG
12 #define DTRACE(fmt, args...) \
13 {do { fprintf(stderr, "[CBHM][%s:%04d] " fmt, __func__,__LINE__, ##args); } while (0); }
14 #else
15 #define DTRACE(fmt, args...) 
16 #endif
17
18 struct appdata;
19
20 #define HISTORY_QUEUE_NUMBER 5
21
22 #endif // _common_h_