13 lines
207 B
C
13 lines
207 B
C
|
// numpy_stub.h
|
||
|
#pragma once
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
// 声明为不完整类型(阻止链接器匹配)
|
||
|
extern struct NumPyAPIWrapper* RTC_PLUGINS_ARRAY_API;
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|