1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
#include <stdio.h>
#include <ctype.h>
#include <Elementary.h>
#include <lua.h>
#include <luajit.h>
#include <lualib.h>
#include <lauxlib.h>
typedef struct _globals globals;
#define WIDTH (300)
#define HEIGHT (300)
#define PC(...) EINA_LOG_DOM_CRIT(ourGlobals->logDom, __VA_ARGS__)
#define PE(...) EINA_LOG_DOM_ERR(ourGlobals->logDom, __VA_ARGS__)
#define PW(...) EINA_LOG_DOM_WARN(ourGlobals->logDom, __VA_ARGS__)
#define PD(...) EINA_LOG_DOM_DBG(ourGlobals->logDom, __VA_ARGS__)
#define PI(...) EINA_LOG_DOM_INFO(ourGlobals->logDom, __VA_ARGS__)
#define PCm(...) EINA_LOG_DOM_CRIT(ourGlobals.logDom, __VA_ARGS__)
#define PEm(...) EINA_LOG_DOM_ERR(ourGlobals.logDom, __VA_ARGS__)
#define PWm(...) EINA_LOG_DOM_WARN(ourGlobals.logDom, __VA_ARGS__)
#define PDm(...) EINA_LOG_DOM_DBG(ourGlobals.logDom, __VA_ARGS__)
#define PIm(...) EINA_LOG_DOM_INFO(ourGlobals.logDom, __VA_ARGS__)
#define D() PD("DEBUG")
// "01:03:52 01-01-1973\n\0"
#define DATE_TIME_LEN 21
# define DATE_TIME_LEN 21
#ifndef FALSE
// NEVER change this
typedef enum
{
FALSE = 0,
TRUE = 1
} boolean;
#endif
struct _globals
{
Evas_Object *win; // Our Elm window.
int logDom; // Our logging domain.
};
void dumpStack(lua_State *L, int i);
void loggingStartup(globals *ourGlobals);
char *getDateTime(struct tm **nowOut, char *dateOut, time_t *tiemOut);
int pull_lua(lua_State *L, int i, char *params, ...);
int push_lua(lua_State *L, char *params, ...);
int luaopen_widget(lua_State *L);
void GuiLuaDo(int argc, char **argv);
|