00001 /* 00002 * MySQLaux - auxiliary classes for communication with MySQL databases 00003 * Copyright © 2001 Thomas Langen (mailto:langen@langensoft.com) 00004 * 00005 * This program is free software; you can redistribute it and/or modify 00006 * it under the terms of the GNU General Public License as published by 00007 * the Free Software Foundation; either version 2 of the License, or 00008 * (at your option) any later version. 00009 * 00010 * This program is distributed in the hope that it will be useful, 00011 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 * GNU General Public License for more details. 00014 * 00015 * You should have received a copy of the GNU General Public License 00016 * along with this program; if not, write to the Free Software 00017 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00018 * 00019 * $Source: typedefs.h $ 00020 * $Id: typedefs.h 1.1 Fri, 06 Apr 2001 10:30:48 +0200 langen $ 00021 * $ProjectHeader: MySQLaux 0.6 Fri, 06 Apr 2001 10:30:48 +0200 langen $ 00022 */ 00023 00024 #ifndef __MySQLaux_typedefs_h__ 00025 #define __MySQLaux_typedefs_h__ 00026 00027 namespace MySQLaux 00028 { 00030 00047 #ifdef __GNUG__ 00048 typedef unsigned char UTiny; 00049 typedef signed char Tiny; 00050 typedef unsigned short UShort; 00051 typedef signed short Short; 00052 typedef unsigned long ULong; 00053 typedef signed long Long; 00054 typedef unsigned long UInt24; 00055 typedef signed long Int24; 00056 typedef unsigned long long ULongLong; 00057 typedef signed long long LongLong; 00058 typedef float Float; 00059 typedef double Double; 00060 #else 00061 #error Compiler not recognized for mapping MySQL types 00062 #endif 00063 00064 } 00065 00066 #endif // __MySQLaux_typedefs_h__ 00067 00068 /* 00069 * Local Variables: 00070 * mode: C++ 00071 * fill-column: 80 00072 * c-comment-continuation-stars: " * " 00073 * End: 00074 */