From bc6886898d03d28dc30c90db18c2a5f90f20c746 Mon Sep 17 00:00:00 2001 From: Bryan Forbes Date: Tue, 16 Mar 2010 18:20:44 -0500 Subject: Removed stdint.pxi. Implemented event_subscribe, event_unsubscribe, get_device_list. Improved Error classes. --- cython/stdint.pxi | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 cython/stdint.pxi (limited to 'cython/stdint.pxi') diff --git a/cython/stdint.pxi b/cython/stdint.pxi deleted file mode 100644 index 518c3d1..0000000 --- a/cython/stdint.pxi +++ /dev/null @@ -1,10 +0,0 @@ -cdef extern from "stdint.h": - ctypedef unsigned char uint8_t - ctypedef short int int16_t - ctypedef unsigned short int uint16_t - ctypedef unsigned int uint32_t - ctypedef int int32_t -IF UNAME_MACHINE == 'x86_64': - ctypedef unsigned long int uint64_t -ELSE: - ctypedef unsigned long long int uint64_t -- cgit v1.1-32-gdbae