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

28 lines
604 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)
#include <ostream>
#include <iostream>
2013-08-26 20:56:36 +02:00
extern "C" {
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"
#include "ppport.h"
#undef do_open
#undef do_close
}
#define EPSILON 1e-4
namespace Slic3r {}
using namespace Slic3r;
/* Implementation of CONFESS("foo"): */
2013-09-09 21:40:57 +02:00
#define CONFESS(...) confess_at(__FILE__, __LINE__, __func__, __VA_ARGS__)
void confess_at(const char *file, int line, const char *func, const char *pat, ...);
/* End implementation of CONFESS("foo"): */
2013-06-23 17:07:12 +02:00
#endif