X-Git-Url: https://git.teslayout.com/public/public/public/?a=blobdiff_plain;f=include%2Fanna%2Fcore%2Futil%2Fdefines.hpp;fp=include%2Fanna%2Fcore%2Futil%2Fdefines.hpp;h=536013f41febb576cdce757cf97f2e0a0c3f0782;hb=884501d2411bc4fdfafae65948262c959e068d7d;hp=066dd15e3c3aa1333378febef3c361a3a3c70869;hpb=6dbe157ab584ccb81e9d3edc88fabc38c93c7f3e;p=anna.git diff --git a/include/anna/core/util/defines.hpp b/include/anna/core/util/defines.hpp index 066dd15..536013f 100644 --- a/include/anna/core/util/defines.hpp +++ b/include/anna/core/util/defines.hpp @@ -112,11 +112,24 @@ typedef unsigned int U32; /** Alias for int: signed integer with 32 bits */ typedef int S32; +///** Alias for unsigned long long: unsigned integer with 64 bits */ +//typedef unsigned long long int U64; +// +///** Alias for long long: signed integer with 64 bits */ +//typedef long long int S64; +#ifndef __x86_64__ +#undef __anna64__ +/** Alias for long long: signed integer with 64 bits */ +typedef int64_t S64 /** Alias for unsigned long long: unsigned integer with 64 bits */ -typedef unsigned long long int U64; - +typedef u_int64_t U64; +#else +#define __anna64__ /** Alias for long long: signed integer with 64 bits */ typedef long long int S64; +/** Alias for unsigned long long: unsigned integer with 64 bits */ +typedef unsigned long long int U64; +#endif /** Alias for float: floating number with 32 bits (1-8-23) */ typedef float F32;