Welcome to mirror list, hosted at ThFree Co, Russian Federation.

XS.xsp « xsp « xs - github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c54e06be591f60989ce4af1425ecb88e18ee0b3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
%module{Slic3r::XS};
%package{Slic3r::XS};

#include <xsinit.h>

%{

%}

%package{Slic3r};
%{

SV*
VERSION()
    CODE:
        RETVAL = newSVpv(SLIC3R_VERSION, 0);
    OUTPUT: RETVAL

%}