blob: 6f7c159634e0979769db9d546e81be3e74a501a8 [file] [log] [blame]
#include <Python.h> // NOLINT
#ifdef _WIN32
__declspec(dllimport)
#endif
extern PyObject* initModuleFlatbuffer(void);
#ifndef _WIN32
#ifdef __cplusplus
extern "C"
#endif
__attribute__((visibility("default"))) PyObject* PyInit__C_flatbuffer(void);
#endif
PyMODINIT_FUNC PyInit__C_flatbuffer(void)
{
return initModuleFlatbuffer();
}