IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 3150


Ignore:
Timestamp:
Feb 7, 2005, 4:04:14 PM (21 years ago)
Author:
desonia
Message:

* empty log message *

Location:
trunk/psLib
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/config.h.in

    r3139 r3150  
    7575#undef PACKAGE_VERSION
    7676
     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
    7792/* Define to 1 if you have the ANSI C header files. */
    7893#undef STDC_HEADERS
  • trunk/psLib/src/sysUtils/sysUtils.i

    r3147 r3150  
    11/* sysUtils */
     2%include "psType.h"
    23%include "psAbort.h"
    34%include "psConfigure.h"
     
    89%include "psString.h"
    910%include "psTrace.h"
    10 %include "psType.h"
    1111
    1212%inline %{
  • trunk/psLib/swig/Makefile.am

    r3145 r3150  
    1212        -I$(SRCDIR)/src/fileUtils \
    1313        -I$(SRCDIR)/src/image \
    14         -I$(SRCDIR)/src/sysUtils
     14        -I$(SRCDIR)/src/sysUtils \
     15        -I/usr/include \
     16        -I/usr/local/include
    1517
    1618####################################################
  • trunk/psLib/swig/pslib.i

    r3145 r3150  
    1515%}
    1616
     17/* XXX: this is temporary -- not portable, but should work with any current OS supported */
     18typedef char int8_t;
     19typedef unsigned char uint8_t;
     20typedef short int16_t;
     21typedef unsigned short uint16_t;
     22typedef int int32_t;
     23typedef unsigned int uint32_t;
     24typedef long long int64_t;
     25typedef unsigned long long uint64_t;
     26
     27
    1728/* grab the typedefs used throughout psLib, e.g. psU8, psU16,... */
    18 %import "psType.h"
    19 %import "psMemory.h"
    20 
    2129%include "cpointer.i"
    2230
Note: See TracChangeset for help on using the changeset viewer.