~ubuntu-branches/ubuntu/edgy/swig1.3/edgy

« back to all changes in this revision

Viewing changes to Lib/clisp/clisp.swg

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2005-12-05 01:16:04 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051205011604-ygx904it6413k3go
Tags: 1.3.27-1ubuntu1
Resynchronise with Debian again, for the new subversion packages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Define a C preprocessor symbol that can be used in interface files
 
2
   to distinguish between the SWIG language modules. */ 
 
3
 
 
4
#define SWIG_CLISP
 
5
 
 
6
/* Typespecs for basic types. */
 
7
 
 
8
%typemap(in) void "NIL";
 
9
 
 
10
%typemap(in) char "character";
 
11
%typemap(in) char * "ffi:c-string";
 
12
%typemap(in) unsigned char "ffi:uchar";
 
13
%typemap(in) signed char "ffi:char";
 
14
 
 
15
%typemap(in) short "ffi:short";
 
16
%typemap(in) signed short "ffi:short";
 
17
%typemap(in) unsigned short "ffi:ushort";
 
18
 
 
19
%typemap(in) int "ffi:int";
 
20
%typemap(in) signed int "ffi:int";
 
21
%typemap(in) unsigned int "ffi:uint";
 
22
 
 
23
%typemap(in) long "ffi:long";
 
24
%typemap(in) signed long "ffi:long";
 
25
%typemap(in) unsigned long "ffi:ulong";
 
26
 
 
27
%typemap(in) float "SINGLE-FLOAT";
 
28
%typemap(in) double "DOUBLE-FLOAT";