Changeset 3150
- Timestamp:
- Feb 7, 2005, 4:04:14 PM (21 years ago)
- Location:
- trunk/psLib
- Files:
-
- 4 edited
-
src/config.h.in (modified) (1 diff)
-
src/sysUtils/sysUtils.i (modified) (2 diffs)
-
swig/Makefile.am (modified) (1 diff)
-
swig/pslib.i (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/config.h.in
r3139 r3150 75 75 #undef PACKAGE_VERSION 76 76 77 /* The size of a `char', as computed by sizeof. */ 78 #undef SIZEOF_CHAR 79 80 /* The size of a `int', as computed by sizeof. */ 81 #undef SIZEOF_INT 82 83 /* The size of a `long', as computed by sizeof. */ 84 #undef SIZEOF_LONG 85 86 /* The size of a `long long', as computed by sizeof. */ 87 #undef SIZEOF_LONG_LONG 88 89 /* The size of a `short', as computed by sizeof. */ 90 #undef SIZEOF_SHORT 91 77 92 /* Define to 1 if you have the ANSI C header files. */ 78 93 #undef STDC_HEADERS -
trunk/psLib/src/sysUtils/sysUtils.i
r3147 r3150 1 1 /* sysUtils */ 2 %include "psType.h" 2 3 %include "psAbort.h" 3 4 %include "psConfigure.h" … … 8 9 %include "psString.h" 9 10 %include "psTrace.h" 10 %include "psType.h"11 11 12 12 %inline %{ -
trunk/psLib/swig/Makefile.am
r3145 r3150 12 12 -I$(SRCDIR)/src/fileUtils \ 13 13 -I$(SRCDIR)/src/image \ 14 -I$(SRCDIR)/src/sysUtils 14 -I$(SRCDIR)/src/sysUtils \ 15 -I/usr/include \ 16 -I/usr/local/include 15 17 16 18 #################################################### -
trunk/psLib/swig/pslib.i
r3145 r3150 15 15 %} 16 16 17 /* XXX: this is temporary -- not portable, but should work with any current OS supported */ 18 typedef char int8_t; 19 typedef unsigned char uint8_t; 20 typedef short int16_t; 21 typedef unsigned short uint16_t; 22 typedef int int32_t; 23 typedef unsigned int uint32_t; 24 typedef long long int64_t; 25 typedef unsigned long long uint64_t; 26 27 17 28 /* grab the typedefs used throughout psLib, e.g. psU8, psU16,... */ 18 %import "psType.h"19 %import "psMemory.h"20 21 29 %include "cpointer.i" 22 30
Note:
See TracChangeset
for help on using the changeset viewer.
