26 lines
446 B
C++
26 lines
446 B
C++
#ifndef FCTC_DEFS_H
|
|
#define FCTC_DEFS_H
|
|
|
|
// Build as a DLL under Windows
|
|
#ifdef WIN32
|
|
#define DLL_IMPORT __declspec(dllimport)
|
|
#define DLL_EXPORT __declspec(dllexport)
|
|
#else
|
|
#define DLL_EXPORT
|
|
#define DLL_IMPORT
|
|
#endif
|
|
|
|
// Values returned for error conditions
|
|
#define ERR -999
|
|
#define DERR -999.999
|
|
|
|
#include "kernel/config.h"
|
|
|
|
typedef integer status_t;
|
|
|
|
namespace Cantera {}
|
|
using namespace Cantera;
|
|
namespace std{}
|
|
using namespace std;
|
|
|
|
#endif
|