14 lines
305 B
C
14 lines
305 B
C
|
#pragma once
|
|||
|
|
|||
|
// 可配置的视图插件接口
|
|||
|
|
|||
|
|
|||
|
#ifdef __cplusplus
|
|||
|
# define LOAD_INTERFACE \
|
|||
|
class IView; \
|
|||
|
extern "C" __declspec(dllexport) const IView* LoadViewPlugin();
|
|||
|
#else
|
|||
|
# define LOAD_INTERFACE \
|
|||
|
class IView; \
|
|||
|
const IView* LoadViewPlugin();
|
|||
|
#endif
|