Skip to content

Commit

Permalink
Rebasing with current Cantera version
Browse files Browse the repository at this point in the history
  • Loading branch information
gkogekar committed Mar 25, 2023
1 parent bde7c70 commit 38b6d3a
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions src/extensions/pythonExtensions.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
/* Generated by Cython 0.29.30 */

#ifndef __PYX_HAVE__pythonExtensions
#define __PYX_HAVE__pythonExtensions

#include "Python.h"

#ifndef __PYX_HAVE_API__pythonExtensions

#ifndef __PYX_EXTERN_C
#ifdef __cplusplus
#define __PYX_EXTERN_C extern "C"
#else
#define __PYX_EXTERN_C extern
#endif
#endif

#ifndef DL_IMPORT
#define DL_IMPORT(_T) _T
#endif

__PYX_EXTERN_C char *ct_getExceptionString(PyObject *, PyObject *, PyObject *);
__PYX_EXTERN_C PyObject *ct_newPythonExtensibleRate(Cantera::ReactionRateDelegator *, std::string const &, std::string const &);
__PYX_EXTERN_C PyObject *ct_newPythonExtensibleRateData(Cantera::ReactionDataDelegator *, std::string const &, std::string const &);
__PYX_EXTERN_C PyObject *ct_registerReactionDelegators(void);
__PYX_EXTERN_C PyObject *ct_wrapSolution(std::shared_ptr<Cantera::Solution> );

#endif /* !__PYX_HAVE_API__pythonExtensions */

/* WARNING: the interface of the module init function changed in CPython 3.5. */
/* It now returns a PyModuleDef instance instead of a PyModule instance. */

#if PY_MAJOR_VERSION < 3
PyMODINIT_FUNC initpythonExtensions(void);
#else
PyMODINIT_FUNC PyInit_pythonExtensions(void);
#endif

#endif /* !__PYX_HAVE__pythonExtensions */

0 comments on commit 38b6d3a

Please sign in to comment.