File: fixup_t.h

package info (click to toggle)
libdbd-odbc-perl 1.61-4
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,424 kB
  • sloc: perl: 8,928; ansic: 6,456; makefile: 33; sql: 8
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