aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/luaproc/luaproc.h
diff options
context:
space:
mode:
authorDavid Walter Seikel2012-01-25 02:29:35 +1000
committerDavid Walter Seikel2012-01-25 02:29:35 +1000
commit3236320311f15640083c5bf420bcdeab725ff242 (patch)
tree7f8abdafad10884fbdedf919e49c8b79c1f2287b /libraries/luaproc/luaproc.h
parentQuick and dirty testing of luaJIT+luaproc from LuaSL. (diff)
downloadSledjHamr-3236320311f15640083c5bf420bcdeab725ff242.zip
SledjHamr-3236320311f15640083c5bf420bcdeab725ff242.tar.gz
SledjHamr-3236320311f15640083c5bf420bcdeab725ff242.tar.bz2
SledjHamr-3236320311f15640083c5bf420bcdeab725ff242.tar.xz
Hack together LuaSL, LuaJIT, and luaproc. It's frankenstein right now. lol
Diffstat (limited to '')
-rw-r--r--libraries/luaproc/luaproc.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libraries/luaproc/luaproc.h b/libraries/luaproc/luaproc.h
index 86617a9..4c71685 100644
--- a/libraries/luaproc/luaproc.h
+++ b/libraries/luaproc/luaproc.h
@@ -44,6 +44,11 @@ THE SOFTWARE.
44/* lua process pointer type */ 44/* lua process pointer type */
45typedef struct stluaproc *luaproc; 45typedef struct stluaproc *luaproc;
46 46
47void luaprocInit(void);
48void luaprocRegister(lua_State *L);
49int newProc(const char *code, int file);
50
51
47/* return a process' status */ 52/* return a process' status */
48int luaproc_get_status( luaproc lp ); 53int luaproc_get_status( luaproc lp );
49 54