aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/luaproc/luaproc.h
diff options
context:
space:
mode:
authorDavid Walter Seikel2012-02-05 17:35:45 +1000
committerDavid Walter Seikel2012-02-05 17:35:45 +1000
commit7acd25212c33eade9aa94bd9573221822b10188b (patch)
tree3419c3d073b2a92036be5f6f4b11330fc544c9f2 /libraries/luaproc/luaproc.h
parentImplement the script main loop, and the script UUID, which we call SID, thoug... (diff)
downloadSledjHamr-7acd25212c33eade9aa94bd9573221822b10188b.zip
SledjHamr-7acd25212c33eade9aa94bd9573221822b10188b.tar.gz
SledjHamr-7acd25212c33eade9aa94bd9573221822b10188b.tar.bz2
SledjHamr-7acd25212c33eade9aa94bd9573221822b10188b.tar.xz
Move the heavy lifting part of luaproc message sending to it's own function.
Diffstat (limited to 'libraries/luaproc/luaproc.h')
-rw-r--r--libraries/luaproc/luaproc.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/libraries/luaproc/luaproc.h b/libraries/luaproc/luaproc.h
index 4c71685..d700e86 100644
--- a/libraries/luaproc/luaproc.h
+++ b/libraries/luaproc/luaproc.h
@@ -76,6 +76,9 @@ void luaproc_register_lib( lua_State *L );
76/* queue a luaproc that tried to send a message */ 76/* queue a luaproc that tried to send a message */
77void luaproc_queue_sender( luaproc lp ); 77void luaproc_queue_sender( luaproc lp );
78 78
79
80const char *sendToChannel(const char *chname, const char *message);
81
79/* queue a luaproc that tried to receive a message */ 82/* queue a luaproc that tried to receive a message */
80void luaproc_queue_receiver( luaproc lp ); 83void luaproc_queue_receiver( luaproc lp );
81 84