summaryrefslogtreecommitdiffhomepage
path: root/connection.h
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2021-08-15 17:38:16 +0200
committerAki <please@ignore.pl>2021-08-15 17:38:16 +0200
commit52526c295ccdbe48b4965b269482c0a9fba6e658 (patch)
treed0cb9a1432e41525f8d724ccc68d9f3dc43184bd /connection.h
parent3070ac071925261691d785b78450483f996d2e51 (diff)
downloadplop-52526c295ccdbe48b4965b269482c0a9fba6e658.zip
plop-52526c295ccdbe48b4965b269482c0a9fba6e658.tar.gz
plop-52526c295ccdbe48b4965b269482c0a9fba6e658.tar.bz2
Separated connection and server Lua state
Diffstat (limited to 'connection.h')
-rw-r--r--connection.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/connection.h b/connection.h
index 88cd6b8..14ec62b 100644
--- a/connection.h
+++ b/connection.h
@@ -9,5 +9,5 @@ struct connection
lua_State * L;
};
-struct connection * connection_new(lua_State *, const int);
-void connection_free(lua_State *, struct connection *);
+struct connection * connection_new(const int);
+void connection_free(struct connection *);