Files
esqlite/c_src/esqlite_nif.c
2011-10-13 17:59:37 +02:00

20 lines
272 B
C

/*
* esqlite -- an erlang sqlite nif.
*/
#include <erl_nif.h>
#include "sqlite3.h"
static int on_load(ErlNifEnv* env, void** priv, ERL_NIF_TERM info)
{
return 0;
}
static ErlNifFunc nif_funcs[] = {
};
ERL_NIF_INIT(esqlite, nif_funcs, on_load, NULL, NULL, NULL);