mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-05-15 01:22:37 -07:00
20 lines
317 B
C++
20 lines
317 B
C++
#ifndef _myinit_h_
|
|
#define _myinit_h_
|
|
|
|
// this needs to be included early for MSVC (listing it in Build.PL is not enough)
|
|
#include <ostream>
|
|
|
|
extern "C" {
|
|
#include "EXTERN.h"
|
|
#include "perl.h"
|
|
#include "XSUB.h"
|
|
#include "ppport.h"
|
|
#undef do_open
|
|
#undef do_close
|
|
}
|
|
|
|
namespace Slic3r {}
|
|
using namespace Slic3r;
|
|
|
|
#endif
|