ClickHouse/libs/libmysqlxx/include/mysqlxx/Types.h

21 lines
288 B
C
Raw Normal View History

2011-03-03 19:57:34 +00:00
#ifndef MYSQLXX_TYPES_H
#define MYSQLXX_TYPES_H
#include <mysql/mysql.h>
namespace mysqlxx
{
typedef unsigned long long UInt64;
typedef long long Int64;
typedef unsigned UInt32;
typedef int Int32;
typedef unsigned long * MYSQL_LENGTHS;
typedef MYSQL_FIELD * MYSQL_FIELDS;
}
#endif