File: fixup_t.h

package info (click to toggle)
libdbd-odbc-perl 1.24-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,012 kB
  • ctags: 398
  • sloc: perl: 6,314; ansic: 4,875; makefile: 29; 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