unix-odbc 0.1.4

The unixODBC driver manager. It builds the unixODBC C-library, not the rust bindings to it. It is intended to support the `vendored-unix-odbc` feature `odbc-sys`. Therefore it is recommend to use `odbc-sys` as a dependency rather than to consume this crate directly.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef _LTDL_STUB_H
#define _LTDL_STUB_H

#include <dlfcn.h>

typedef void* lt_dlhandle;

#define lt_dlopen(filename) dlopen(filename, RTLD_LAZY | RTLD_GLOBAL)
#define lt_dlsym(handle, symbol) dlsym(handle, symbol)
#define lt_dlclose(handle) dlclose(handle)
#define lt_dlerror() dlerror()
#define lt_dlinit() 0
#define lt_dlexit() 0
#define lt_dlsetsearchpath(path) 0

#define LTDL_SET_PRELOADED_SYMBOLS()

#endif