1/*
2Copyright (C) 1999-2007 The Botan Project. All rights reserved.
3
4Redistribution and use in source and binary forms, for any use, with or without
5modification, is permitted provided that the following conditions are met:
6
71. Redistributions of source code must retain the above copyright notice, this
8list of conditions, and the following disclaimer.
9
102. Redistributions in binary form must reproduce the above copyright notice,
11this list of conditions, and the following disclaimer in the documentation
12and/or other materials provided with the distribution.
13
14THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) "AS IS" AND ANY EXPRESS OR IMPLIED
15WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
16MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ARE DISCLAIMED.
17
18IN NO EVENT SHALL THE AUTHOR(S) OR CONTRIBUTOR(S) BE LIABLE FOR ANY DIRECT,
19INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
20BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
22LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
23OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
24ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25*/
26// LICENSEHEADER_END
27namespace QCA { // WRAPNS_LINE
28/*************************************************
29 * Low Level Types Header File *
30 * (C) 1999-2007 The Botan Project *
31 *************************************************/
32
33#ifndef BOTAN_TYPES_H__
34#define BOTAN_TYPES_H__
35
36#ifdef BOTAN_TYPES_QT
37} // WRAPNS_LINE
38#include <QtGlobal>
39namespace QCA { // WRAPNS_LINE
40#else
41} // WRAPNS_LINE
42#include <botan/build.h>
43namespace QCA { // WRAPNS_LINE
44#endif
45
46namespace Botan {
47
48#ifdef BOTAN_TYPES_QT
49
50typedef quint8 byte;
51typedef quint16 u16bit;
52typedef quint32 u32bit;
53typedef qint32 s32bit;
54typedef quint64 u64bit;
55
56#else
57
58typedef unsigned char byte;
59typedef unsigned short u16bit;
60typedef unsigned int u32bit;
61
62typedef signed int s32bit;
63
64#if defined(_MSC_VER) || defined(__BORLANDC__)
65typedef unsigned __int64 u64bit;
66#elif defined(__KCC)
67typedef unsigned __long_long u64bit;
68#elif defined(__GNUG__)
69__extension__ typedef unsigned long long u64bit;
70#else
71typedef unsigned long long u64bit;
72#endif
73
74#endif // BOTAN_TYPES_QT
75
76}
77
78namespace Botan_types {
79
80typedef Botan::byte byte;
81typedef Botan::u32bit u32bit;
82
83}
84
85#endif
86} // WRAPNS_LINE
87

source code of qca/src/botantools/botan/botan/types.h