File: fixup_t.h

package info (click to toggle)
libdbd-odbc-perl 1.37-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,272 kB
  • sloc: perl: 7,932; ansic: 5,991; 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