Warning: That file was not part of the compilation database. It may have many parsing errors.

1/* FreeTDS - Library of routines accessing Sybase and Microsoft databases
2 * Copyright (C) 1998-1999 Brian Bruns
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
13 *
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
18 */
19
20#ifndef _tds_sysdep_public_h_
21#define _tds_sysdep_public_h_
22
23/* $Id: tds_sysdep_public.h.in,v 1.14 2010/09/01 08:39:38 freddy77 Exp $ */
24
25#ifdef __cplusplus
26extern "C"
27{
28#endif
29
30/*
31** This is where platform-specific changes need to be made.
32*/
33#if defined(WIN32) || defined(_WIN32) || defined(__WIN32__)
34#include <winsock2.h>
35#include <windows.h>
36#define tds_sysdep_int16_type short /* 16-bit int */
37#define tds_sysdep_int32_type int /* 32-bit int */
38#define tds_sysdep_int64_type __int64 /* 64-bit int */
39#define tds_sysdep_real32_type float /* 32-bit real */
40#define tds_sysdep_real64_type double /* 64-bit real */
41#if !defined(WIN64) && !defined(_WIN64)
42#define tds_sysdep_intptr_type int /* 32-bit int */
43#else
44#define tds_sysdep_intptr_type __int64 /* 64-bit int */
45#endif
46#endif /* defined(WIN32) || defined(_WIN32) || defined(__WIN32__) */
47
48#ifndef tds_sysdep_int16_type
49#define tds_sysdep_int16_type short /* 16-bit int */
50#endif /* !tds_sysdep_int16_type */
51
52#ifndef tds_sysdep_int32_type
53#define tds_sysdep_int32_type int /* 32-bit int */
54#endif /* !tds_sysdep_int32_type */
55
56#ifndef tds_sysdep_int64_type
57#define tds_sysdep_int64_type long /* 64-bit int */
58#endif /* !tds_sysdep_int64_type */
59
60#ifndef tds_sysdep_real32_type
61#define tds_sysdep_real32_type float /* 32-bit real */
62#endif /* !tds_sysdep_real32_type */
63
64#ifndef tds_sysdep_real64_type
65#define tds_sysdep_real64_type double /* 64-bit real */
66#endif /* !tds_sysdep_real64_type */
67
68#ifndef tds_sysdep_intptr_type
69#define tds_sysdep_intptr_type long
70#endif /* !tds_sysdep_intptr_type */
71
72#if !defined(MSDBLIB) && !defined(SYBDBLIB)
73#define MSDBLIB 1
74#endif
75#if defined(MSDBLIB) && defined(SYBDBLIB)
76#error MSDBLIB and SYBDBLIB cannot both be defined
77#endif
78
79#ifdef __cplusplus
80}
81#endif
82
83#endif /* _tds_sysdep_public_h_ */
84

Warning: That file was not part of the compilation database. It may have many parsing errors.