FreeTDS API
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
tds_sysdep_public.h
1 /* FreeTDS - Library of routines accessing Sybase and Microsoft databases
2  * Copyright (C) 1998-2011 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.15 2011-08-08 07:27:57 freddy77 Exp $ */
24 
25 #ifdef __cplusplus
26 extern "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 <ws2tcpip.h>
36 #include <wspiapi.h>
37 #include <windows.h>
38 #define tds_sysdep_int16_type short /* 16-bit int */
39 #define tds_sysdep_int32_type int /* 32-bit int */
40 #define tds_sysdep_int64_type __int64 /* 64-bit int */
41 #define tds_sysdep_real32_type float /* 32-bit real */
42 #define tds_sysdep_real64_type double /* 64-bit real */
43 #if !defined(WIN64) && !defined(_WIN64)
44 #define tds_sysdep_intptr_type int /* 32-bit int */
45 #else
46 #define tds_sysdep_intptr_type __int64 /* 64-bit int */
47 #endif
48 #endif /* defined(WIN32) || defined(_WIN32) || defined(__WIN32__) */
49 
50 #ifndef tds_sysdep_int16_type
51 #define tds_sysdep_int16_type short /* 16-bit int */
52 #endif /* !tds_sysdep_int16_type */
53 
54 #ifndef tds_sysdep_int32_type
55 #define tds_sysdep_int32_type int /* 32-bit int */
56 #endif /* !tds_sysdep_int32_type */
57 
58 #ifndef tds_sysdep_int64_type
59 #define tds_sysdep_int64_type long /* 64-bit int */
60 #endif /* !tds_sysdep_int64_type */
61 
62 #ifndef tds_sysdep_real32_type
63 #define tds_sysdep_real32_type float /* 32-bit real */
64 #endif /* !tds_sysdep_real32_type */
65 
66 #ifndef tds_sysdep_real64_type
67 #define tds_sysdep_real64_type double /* 64-bit real */
68 #endif /* !tds_sysdep_real64_type */
69 
70 #ifndef tds_sysdep_intptr_type
71 #define tds_sysdep_intptr_type long
72 #endif /* !tds_sysdep_intptr_type */
73 
74 #if !defined(MSDBLIB) && !defined(SYBDBLIB)
75 #define SYBDBLIB 1
76 #endif
77 #if defined(MSDBLIB) && defined(SYBDBLIB)
78 #error MSDBLIB and SYBDBLIB cannot both be defined
79 #endif
80 
81 #ifdef __cplusplus
82 }
83 #endif
84 
85 #endif /* _tds_sysdep_public_h_ */