Пример #1
0
/**
 * mdb_init:
 *
 * Initializes the LibMDB library.  This function should be called exactly once
 * by calling program and prior to any other function.
 *
 **/
/* METHOD */ void mdb_init()
{
	mdb_init_backends();
}
Пример #2
0
/**
 * mdb_init:
 *
 * Initializes the LibMDB library.  This function should be called exactly once
 * by calling program and prior to any other function.
 *
 **/
/* METHOD */ void mdb_init()
{
#if !MDB_NO_BACKENDS
	mdb_init_backends();
#endif
}