mirror of
https://github.com/berkeleydb/libdb.git
synced 2024-11-17 01:26:25 +00:00
14 lines
266 B
C
14 lines
266 B
C
#ifndef _INI_H
|
|
#define _INI_H
|
|
|
|
/*
|
|
* Missing in most unixODBC installations but
|
|
* needed by <odbcinstext.h>
|
|
*/
|
|
|
|
#define INI_MAX_LINE 1000
|
|
#define INI_MAX_PROPERTY_NAME INI_MAX_LINE
|
|
#define INI_MAX_PROPERTY_VALUE INI_MAX_LINE
|
|
|
|
typedef void *HINI;
|
|
#endif
|