Home | History | Annotate | Download | only in inc
      1 /*--------------------------------------------------------------------------
      2 Copyright (c) 2010-2011, Code Aurora Forum. All rights reserved.
      3 
      4 Redistribution and use in source and binary forms, with or without
      5 modification, are permitted provided that the following conditions are met:
      6     * Redistributions of source code must retain the above copyright
      7       notice, this list of conditions and the following disclaimer.
      8     * Redistributions in binary form must reproduce the above copyright
      9       notice, this list of conditions and the following disclaimer in the
     10       documentation and/or other materials provided with the distribution.
     11     * Neither the name of Code Aurora nor
     12       the names of its contributors may be used to endorse or promote
     13       products derived from this software without specific prior written
     14       permission.
     15 
     16 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
     17 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     18 IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
     19 NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR
     20 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
     21 EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
     22 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
     23 OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
     24 WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
     25 OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
     26 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     27 --------------------------------------------------------------------------*/
     28 #ifndef QTYPES_H
     29 #define QTYPES_H
     30 /*===========================================================================
     31 
     32                             Data Declarations
     33 
     34 ===========================================================================*/
     35 
     36 #ifdef __cplusplus
     37 extern "C" {
     38 #endif
     39 
     40 /* ------------------------------------------------------------------------
     41 ** Constants
     42 ** ------------------------------------------------------------------------ */
     43 
     44 #ifdef TRUE
     45 #undef TRUE
     46 #endif
     47 
     48 #ifdef FALSE
     49 #undef FALSE
     50 #endif
     51 
     52 #define TRUE   1   /* Boolean true value. */
     53 #define FALSE  0   /* Boolean false value. */
     54 
     55 
     56 
     57 /* -----------------------------------------------------------------------
     58 ** Standard Types
     59 ** ----------------------------------------------------------------------- */
     60 
     61 /* The following definitions are the same accross platforms.  This first
     62 ** group are the sanctioned types.
     63 */
     64 
     65 typedef  unsigned char      boolean;     /* Boolean value type. */
     66 
     67 typedef  unsigned int  uint32;      /* Unsigned 32 bit value */
     68 typedef  unsigned short     uint16;      /* Unsigned 16 bit value */
     69 typedef  unsigned char      uint8;       /* Unsigned 8  bit value */
     70 
     71 typedef  int    int32;       /* Signed 32 bit value */
     72 typedef  signed short       int16;       /* Signed 16 bit value */
     73 typedef  signed char        int8;        /* Signed 8  bit value */
     74 
     75 /* This group are the deprecated types.  Their use should be
     76 ** discontinued and new code should use the types above
     77 */
     78 typedef  unsigned char     byte;         /* Unsigned 8  bit value type. */
     79 typedef  unsigned short    word;         /* Unsinged 16 bit value type. */
     80 typedef  unsigned long     dword;        /* Unsigned 32 bit value type. */
     81 
     82 typedef long long           int64;
     83 typedef unsigned long long  uint64;
     84 
     85 
     86 #ifdef __cplusplus
     87 }
     88 #endif
     89 
     90 #endif  /* QTYPES_H */
     91