00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef SQLFRONT_h
00022 #define SQLFRONT_h
00023
00024 #include "./sybfront.h"
00025
00026 static const char rcsid_sqlfront_h[] = "$Id: sqlfront.h,v 1.10 2011-07-13 11:06:31 freddy77 Exp $";
00027 static const void *const no_unused_sqlfront_h_warn[] = { rcsid_sqlfront_h, no_unused_sqlfront_h_warn };
00028
00029 typedef DBPROCESS * PDBPROCESS;
00030 typedef LOGINREC * PLOGINREC;
00031 typedef DBCURSOR * PDBCURSOR;
00032
00033 typedef int * LPINT;
00034 typedef char * LPSTR;
00035 #if !defined(PHP_MSSQL_H) || !defined(PHP_MSSQL_API)
00036 typedef BYTE * LPBYTE;
00037 #endif
00038 typedef void * LPVOID;
00039 typedef const char * LPCSTR;
00040
00041 typedef const LPINT LPCINT;
00042 #ifndef _LPCBYTE_DEFINED
00043 #define _LPCBYTE_DEFINED
00044 typedef const BYTE * LPCBYTE;
00045 #endif
00046 typedef USHORT * LPUSHORT;
00047 typedef const LPUSHORT LPCUSHORT;
00048 typedef DBINT * LPDBINT;
00049 typedef const LPDBINT LPCDBINT;
00050 typedef DBBINARY * LPDBBINARY;
00051 typedef const LPDBBINARY LPCDBBINARY;
00052 typedef DBDATEREC * LPDBDATEREC;
00053 typedef const LPDBDATEREC LPCDBDATEREC;
00054 typedef DBDATETIME * LPDBDATETIME;
00055 typedef const LPDBDATETIME LPCDBDATETIME;
00056
00057 #endif