English traslation
[anna.git] / include / anna / core / util / defines.hpp
index 066dd15..a5c5bc7 100644 (file)
@@ -1,4 +1,4 @@
-// ANNA - Anna is Not 'N' Anymore
+// ANNA - Anna is Not Nothingness Anymore
 //
 // (c) Copyright 2005-2014 Eduardo Ramos Testillano & Francisco Ruiz Rayo
 //
@@ -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;