odbx.h | odbx.h | |||
---|---|---|---|---|
skipping to change at line 21 | skipping to change at line 21 | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* Library General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU Library General Public | * You should have received a copy of the GNU Library General Public | |||
* License along with this library; if not, write to the Free | * License along with this library; if not, write to the Free | |||
* Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA | * Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA | |||
* 02111-1307 USA. | * 02111-1307 USA. | |||
*/ | */ | |||
#ifdef HAVE_CONFIG_H | ||||
#include <config.h> | ||||
#endif | ||||
#ifdef HAVE_STDINT_H | ||||
#include <stdint.h> | #include <stdint.h> | |||
#else | ||||
#include <sys/types.h> | ||||
#endif | ||||
#include <sys/time.h> | #include <sys/time.h> | |||
#ifndef ODBX_H | #ifndef ODBX_H | |||
#define ODBX_H | #define ODBX_H | |||
#ifdef __cplusplus | #ifdef __cplusplus | |||
extern "C" { | extern "C" { | |||
#endif | #endif | |||
/* | /* | |||
skipping to change at line 57 | skipping to change at line 66 | |||
#define ODBX_TYPE_VARCHAR 0x12 | #define ODBX_TYPE_VARCHAR 0x12 | |||
#define ODBX_TYPE_NVARCHAR 0x13 | #define ODBX_TYPE_NVARCHAR 0x13 | |||
#define ODBX_TYPE_CLOB 0x20 | #define ODBX_TYPE_CLOB 0x20 | |||
#define ODBX_TYPE_NCLOB 0x21 | #define ODBX_TYPE_NCLOB 0x21 | |||
#define ODBX_TYPE_XML 0x22 | #define ODBX_TYPE_XML 0x22 | |||
#define ODBX_TYPE_BLOB 0x2f | #define ODBX_TYPE_BLOB 0x2f | |||
#define ODBX_TYPE_TIME 0x30 | #define ODBX_TYPE_TIME 0x30 | |||
#define ODBX_TYPE_TIME_TZ 0x31 | #define ODBX_TYPE_TIMETZ 0x31 | |||
#define ODBX_TYPE_TIMESTAMP 0x32 | #define ODBX_TYPE_TIMESTAMP 0x32 | |||
#define ODBX_TYPE_TIMESTAMP_TZ 0x33 | #define ODBX_TYPE_TIMESTAMPTZ 0x33 | |||
#define ODBX_TYPE_DATE 0x34 | #define ODBX_TYPE_DATE 0x34 | |||
#define ODBX_TYPE_INTERVAL 0x35 | #define ODBX_TYPE_INTERVAL 0x35 | |||
#define ODBX_TYPE_ARRAY 0x40 | #define ODBX_TYPE_ARRAY 0x40 | |||
#define ODBX_TYPE_MULTISET 0x41 | #define ODBX_TYPE_MULTISET 0x41 | |||
#define ODBX_TYPE_DATALINK 0x50 | #define ODBX_TYPE_DATALINK 0x50 | |||
#define ODBX_TYPE_UNKNOWN 0xff | #define ODBX_TYPE_UNKNOWN 0xff | |||
End of changes. 4 change blocks. | ||||
2 lines changed or deleted | 11 lines changed or added | |||