File: fixup_t.h

package info (click to toggle)
libdbd-odbc-perl 1.13-4
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 544 kB
  • ctags: 287
  • sloc: perl: 3,395; ansic: 3,236; makefile: 55
file content (15 lines) | stat: -rw-r--r-- 243 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

/* fix up types for driver managers that don't have them	*/
/* (basically iODBC)										*/

#ifndef SQLCHAR
#define SQLCHAR char
#endif

#ifndef SQLSMALLINT
#define SQLSMALLINT I16
#endif

#ifndef SQLUINTEGER
#define SQLUINTEGER U32
#endif