summaryrefslogtreecommitdiffstats
path: root/cython/stdint.pxi
diff options
context:
space:
mode:
authorGravatar Bryan Forbes2010-03-18 20:50:26 -0500
committerGravatar Martin Szulecki2012-03-20 23:25:54 +0100
commit7b4cb7fb2f1b1ed29f3bc97a9bcae5fc2a89fe95 (patch)
tree4268abec171becef6befdfc5bd0a1ffc46d1962a /cython/stdint.pxi
parent68c63cc1382326e7f0cb4e6bd863427f9069ca05 (diff)
downloadlibimobiledevice-7b4cb7fb2f1b1ed29f3bc97a9bcae5fc2a89fe95.tar.gz
libimobiledevice-7b4cb7fb2f1b1ed29f3bc97a9bcae5fc2a89fe95.tar.bz2
Added afc.pxi.
More errors handled. Changed error codes to enums in cython defs.
Diffstat (limited to 'cython/stdint.pxi')
-rw-r--r--cython/stdint.pxi2
1 files changed, 2 insertions, 0 deletions
diff --git a/cython/stdint.pxi b/cython/stdint.pxi
index e21103f..2617dec 100644
--- a/cython/stdint.pxi
+++ b/cython/stdint.pxi
@@ -5,6 +5,8 @@ cdef extern from *:
ctypedef unsigned int uint32_t
ctypedef int int32_t
IF UNAME_MACHINE == 'x86_64':
+ ctypedef long int int64_t
ctypedef unsigned long int uint64_t
ELSE:
+ ctypedef long long int int64_t
ctypedef unsigned long long int uint64_t