aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/libraries/LumbrJack.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libraries/LumbrJack.h')
-rw-r--r--src/libraries/LumbrJack.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/libraries/LumbrJack.h b/src/libraries/LumbrJack.h
index 1912bef..74249ed 100644
--- a/src/libraries/LumbrJack.h
+++ b/src/libraries/LumbrJack.h
@@ -2,6 +2,15 @@
2#define _LUMBRJACK_H_ 2#define _LUMBRJACK_H_
3 3
4 4
5#define EFL_API_OVERRIDE 1
6/* Enable access to unstable EFL API that are still in beta */
7#define EFL_BETA_API_SUPPORT 1
8/* Enable access to unstable EFL EO API. */
9#define EFL_EO_API_SUPPORT 1
10
11#define ARRAY_LENGTH(array) (sizeof(array) / sizeof(*array))
12
13
5#include <stdio.h> 14#include <stdio.h>
6#include <ctype.h> 15#include <ctype.h>
7 16
@@ -31,6 +40,16 @@ typedef enum
31#endif 40#endif
32 41
33 42
43extern int logDom;
44
45int HamrTime(char *argv0, void *main, int logDom);
46const char *prefix_get(void);
47const char *prefix_bin_get(void);
48const char *prefix_data_get(void);
49const char *prefix_lib_get(void);
50const char *prefix_locale_get(void);
51void pantsOff(int logDom);
52
34int loggingStartup(char *name, int logDom); 53int loggingStartup(char *name, int logDom);
35char *getDateTime(struct tm **nowOut, char *dateOut, time_t *tiemOut); 54char *getDateTime(struct tm **nowOut, char *dateOut, time_t *tiemOut);
36float timeDiff(struct timeval *now, struct timeval *then); 55float timeDiff(struct timeval *now, struct timeval *then);