rtc_plugins/util/numpyConfig.h

15 lines
405 B
C
Raw Normal View History

2025-04-10 17:03:55 +08:00
// numpy_config.h
2025-04-10 17:10:03 +08:00
#ifndef MY_HEADER_H_
#define MY_HEADER_H_
2025-04-10 17:03:55 +08:00
// 使用更独特的项目前缀(建议:<PROJECT>_<MODULE>_<RANDOM_SUFFIX>
#define PY_ARRAY_UNIQUE_SYMBOL RTC_PLUGINS_7A3B_ARRAY_API
#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION
2025-04-10 17:10:03 +08:00
#endif
2025-04-10 17:03:55 +08:00
// 确保只被包含一次
#ifndef NUMPY_CONFIG_INCLUDED
#define NUMPY_CONFIG_INCLUDED
#include <Python.h>
#include <numpy/arrayobject.h>
#endif