File: ini.h

package info (click to toggle)
sqliteodbc 0.99991-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, trixie
  • size: 4,940 kB
  • sloc: ansic: 59,139; sh: 12,780; makefile: 952; sql: 313
file content (14 lines) | stat: -rw-r--r-- 266 bytes parent folder | download | duplicates (19)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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