summaryrefslogtreecommitdiff
path: root/Examples/test-suite/preproc_include.i
blob: c6b08b5fd869ccd8a2bb9e4c61074146311019fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
%module preproc_include

%{
#include "preproc_include_a.h"
#include "preproc_include_b.h"
int multiply10(int a) { return a*10; }
int multiply20(int a) { return a*20; }
int multiply30(int a) { return a*30; }
%}

#define INCLUDE_B preproc_include_b.h
#define FILE_INCLUDE(FNAME) #FNAME

%include FILE_INCLUDE(preproc_include_a.h)

// Note that this test uses -includeall, so including preproc_include_b.h also includes preproc_include_c.h
%include INCLUDE_B