Files
OrcaSlicer-bambulab/xs/src/myinit.h
T

26 lines
419 B
C++
Raw Normal View History

2013-06-23 17:07:12 +02:00
#ifndef _myinit_h_
#define _myinit_h_
2013-08-26 20:56:36 +02:00
// this needs to be included early for MSVC (listing it in Build.PL is not enough)
2013-09-23 11:27:23 +02:00
#undef read
#undef seekdir
2013-08-26 20:56:36 +02:00
#include <ostream>
#include <iostream>
2014-02-01 11:53:45 +01:00
#include <sstream>
2013-08-26 20:56:36 +02:00
#ifdef SLIC3RXS
extern "C" {
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"
#include "ppport.h"
#undef do_open
#undef do_close
}
#include "perlglue.hpp"
#endif
2014-08-03 19:42:29 +02:00
#include "libslic3r/libslic3r.h"
2013-06-23 17:07:12 +02:00
#endif