00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef SQLFRONT_h
00021 #define SQLFRONT_h
00022
00023 #include "./sybfront.h"
00024
00025 static const char rcsid_sqlfront_h[] = "$Id: sqlfront.h,v 1.6 2010/12/10 20:46:19 jklowden Exp $";
00026 static const void *const no_unused_sqlfront_h_warn[] = { rcsid_sqlfront_h, no_unused_sqlfront_h_warn };
00027
00028 typedef DBPROCESS * PDBPROCESS;
00029 typedef LOGINREC * PLOGINREC;
00030 typedef DBCURSOR * PDBCURSOR;
00031
00032 typedef int * LPINT;
00033 typedef char * LPSTR;
00034 typedef BYTE * LPBYTE;
00035 typedef void * LPVOID;
00036 typedef const char * LPCSTR;
00037
00038 typedef const LPINT LPCINT;
00039 typedef const LPBYTE LPCBYTE ;
00040 typedef USHORT * LPUSHORT;
00041 typedef const LPUSHORT LPCUSHORT;
00042 typedef DBINT * LPDBINT;
00043 typedef const LPDBINT LPCDBINT;
00044 typedef DBBINARY * LPDBBINARY;
00045 typedef const LPDBBINARY LPCDBBINARY;
00046 typedef DBDATEREC * LPDBDATEREC;
00047 typedef const LPDBDATEREC LPCDBDATEREC;
00048 typedef DBDATETIME * LPDBDATETIME;
00049 typedef const LPDBDATETIME LPCDBDATETIME;
00050
00051 #endif