xrootd
XPtypes.hh
Go to the documentation of this file.
1 #ifndef __XPTYPES_H
2 #define __XPTYPES_H
3 /******************************************************************************/
4 /* */
5 /* X P t y p e s . h h */
6 /* */
7 /* (c) 2012 by the Board of Trustees of the Leland Stanford, Jr., University */
8 /* All Rights Reserved */
9 /* Produced by Andrew Hanushevsky for Stanford University under contract */
10 /* DE-AC02-76-SFO0515 with the Department of Energy */
11 /* */
12 /* This file is part of the XRootD software suite. */
13 /* */
14 /* XRootD is free software: you can redistribute it and/or modify it under */
15 /* the terms of the GNU Lesser General Public License as published by the */
16 /* Free Software Foundation, either version 3 of the License, or (at your */
17 /* option) any later version. */
18 /* */
19 /* XRootD is distributed in the hope that it will be useful, but WITHOUT */
20 /* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or */
21 /* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public */
22 /* License for more details. */
23 /* */
24 /* You should have received a copy of the GNU Lesser General Public License */
25 /* along with XRootD in a file called COPYING.LESSER (LGPL license) and file */
26 /* COPYING (GPL license). If not, see <http://www.gnu.org/licenses/>. */
27 /* */
28 /* The copyright holder's institutional names and contributor's names may not */
29 /* be used to endorse or promote products derived from this software without */
30 /* specific prior written permission of the institution or contributor. */
31 /******************************************************************************/
32 
33 // Full range type compatibility work done by Gerardo Ganis, CERN.
34 
35 // Typical data types
36 //
37 // Only char and short are truly portable types
38 typedef unsigned char kXR_char;
39 typedef short kXR_int16;
40 typedef unsigned short kXR_unt16;
41 
42 // Signed integer 4 bytes
43 //
44 #ifndef XR__INT16
45 # if defined(LP32) || defined(__LP32) || defined(__LP32__) || \
46  defined(BORLAND)
47 # define XR__INT16
48 # endif
49 #endif
50 #ifndef XR__INT64
51 # if defined(ILP64) || defined(__ILP64) || defined(__ILP64__)
52 # define XR__INT64
53 # endif
54 #endif
55 #if defined(XR__INT16)
56 typedef long kXR_int32;
57 typedef unsigned long kXR_unt32;
58 #elif defined(XR__INT64)
59 typedef int32 kXR_int32;
60 typedef unsigned int32 kXR_unt32;
61 #else
62 typedef int kXR_int32;
63 typedef unsigned int kXR_unt32;
64 #endif
65 
66 // Signed integer 8 bytes
67 //
68 //#if defined(_WIN32)
69 //typedef __int64 kXR_int64;
70 //#else
71 typedef long long kXR_int64;
72 typedef unsigned long long kXR_unt64;
73 //#endif
74 #endif
unsigned char kXR_char
Definition: XPtypes.hh:38
unsigned short kXR_unt16
Definition: XPtypes.hh:40
unsigned long long kXR_unt64
Definition: XPtypes.hh:72
unsigned int kXR_unt32
Definition: XPtypes.hh:63
int kXR_int32
Definition: XPtypes.hh:62
long long kXR_int64
Definition: XPtypes.hh:71
short kXR_int16
Definition: XPtypes.hh:39