mirror of
https://github.com/berkeleydb/libdb.git
synced 2024-11-17 09:36:24 +00:00
15 lines
266 B
C
15 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
|