dbd/postgresql/main.c

changeset 1
408291a6eb3e
child 2
c4f02fc67e5a
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/dbd/postgresql/main.c	Sun Nov 23 01:29:09 2008 +0000
@@ -0,0 +1,12 @@
+#include "dbd_postgresql.h"
+
+int dbd_postgresql_connection(lua_State *L);
+int dbd_postgresql_statement(lua_State *L);
+
+int luaopen_dbdpostgresql(lua_State *L) {
+    dbd_postgresql_connection(L);
+    dbd_postgresql_statement(L); 
+
+    return 1;
+}
+

mercurial