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.2.3 2011/07/14 12:17:55 freddy77 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 #if !defined(PHP_MSSQL_H) || !defined(PHP_MSSQL_API)
00035 typedef BYTE * LPBYTE;
00036 #endif
00037 typedef void * LPVOID;
00038 typedef const char * LPCSTR;
00039
00040 typedef const LPINT LPCINT;
00041 #ifndef _LPCBYTE_DEFINED
00042 #define _LPCBYTE_DEFINED
00043 typedef const BYTE * LPCBYTE;
00044 #endif
00045 typedef USHORT * LPUSHORT;
00046 typedef const LPUSHORT LPCUSHORT;
00047 typedef DBINT * LPDBINT;
00048 typedef const LPDBINT LPCDBINT;
00049 typedef DBBINARY * LPDBBINARY;
00050 typedef const LPDBBINARY LPCDBBINARY;
00051 typedef DBDATEREC * LPDBDATEREC;
00052 typedef const LPDBDATEREC LPCDBDATEREC;
00053 typedef DBDATETIME * LPDBDATETIME;
00054 typedef const LPDBDATETIME LPCDBDATETIME;
00055
00056 #endif