aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/libraries/Runnr.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libraries/Runnr.h')
-rw-r--r--src/libraries/Runnr.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/libraries/Runnr.h b/src/libraries/Runnr.h
index a2098d9..b44dca4 100644
--- a/src/libraries/Runnr.h
+++ b/src/libraries/Runnr.h
@@ -12,6 +12,8 @@
12#include <lualib.h> 12#include <lualib.h>
13#include <lauxlib.h> 13#include <lauxlib.h>
14 14
15#include "SledjHamr.h"
16
15// Stick with Plan C for now. 17// Stick with Plan C for now.
16// TODO - Should make this choosable at run time after more testing of Ecore_Thead. 18// TODO - Should make this choosable at run time after more testing of Ecore_Thead.
17#define THREADIT 0 19#define THREADIT 0
@@ -41,7 +43,7 @@ typedef struct _LuaCompile
41{ 43{
42 char *file, *SID, *luaName; 44 char *file, *SID, *luaName;
43 int bugCount; 45 int bugCount;
44 Ecore_Con_Client *client; 46 Connection *client;
45 compileCb parser; 47 compileCb parser;
46 compileCb cb; 48 compileCb cb;
47 boolean doConstants; 49 boolean doConstants;
@@ -69,7 +71,7 @@ typedef struct _script
69 runnrStatus status; 71 runnrStatus status;
70 RunnrServerCb send2server; 72 RunnrServerCb send2server;
71 Eina_Clist messages; 73 Eina_Clist messages;
72 Ecore_Con_Client *client; 74 Connection *client;
73 Ecore_Timer *timer; 75 Ecore_Timer *timer;
74} script; 76} script;
75 77