summaryrefslogtreecommitdiff
path: root/Examples/scilab/struct/example.i
blob: af2cd3f4a9b0e4b49e15a6898d0ff27c4ff021fc (plain)
1
2
3
4
5
6
7
8
9
10
11
%module example

%rename(Bar) Foo;

%inline %{
typedef struct {
    int x;
} Foo;

%}