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

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

%{
#include <xsinit.h>
#include "slic3r/GUI/GUI.hpp"
%}


%package{Slic3r::GUI};

void disable_screensaver()
    %code{% Slic3r::GUI::disable_screensaver(); %};

void enable_screensaver()
    %code{% Slic3r::GUI::enable_screensaver(); %};