dbd/db2/main.c

changeset 14
98192b7d4e89
child 33
6c64c45e7d8f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/dbd/db2/main.c	Fri Dec 05 07:41:15 2008 +0000
@@ -0,0 +1,15 @@
+#include "dbd_db2.h"
+
+int dbd_db2_connection(lua_State *L);
+int dbd_db2_statement(lua_State *L);
+
+/*
+ * library entry point
+ */
+int luaopen_dbddb2(lua_State *L) {
+    dbd_db2_connection(L);
+    dbd_db2_statement(L); 
+
+    return 1;
+}
+

mercurial