rtc_plugins/util/numpyStub.h

12 lines
349 B
C
Raw Normal View History

2025-04-10 18:14:30 +08:00
// numpy_interface.h (新建)
2025-04-10 17:47:00 +08:00
#pragma once
2025-04-10 18:14:30 +08:00
#ifdef IMPLEMENT_NUMPY_API
// 主模块实现路径
#define PY_ARRAY_UNIQUE_SYMBOL RTC_PLUGINS_ARRAY_API
#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION
#include <numpy/arrayobject.h>
#else
// 用户头文件路径
extern void* RTC_PLUGINS_ARRAY_API[]; // 严格匹配NumPy类型
2025-04-10 17:47:00 +08:00
#endif