12 lines
349 B
C
12 lines
349 B
C
// numpy_interface.h (新建)
|
|
#pragma once
|
|
|
|
#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类型
|
|
#endif |