dbd/db2/main.c

changeset 14
98192b7d4e89
child 33
6c64c45e7d8f
equal deleted inserted replaced
13:10c8c6f0da14 14:98192b7d4e89
1 #include "dbd_db2.h"
2
3 int dbd_db2_connection(lua_State *L);
4 int dbd_db2_statement(lua_State *L);
5
6 /*
7 * library entry point
8 */
9 int luaopen_dbddb2(lua_State *L) {
10 dbd_db2_connection(L);
11 dbd_db2_statement(L);
12
13 return 1;
14 }
15

mercurial