12345678910111213141516 |
- #ifndef _RVCINIT_BASE_H_
- #define _RVCINIT_BASE_H_
- typedef enum{
- CMB_LIB = 100, CMB_FLB, PAD_LIB, PAD_FLB, ERROR_TYPE
- }SYSTEM_TYPE;
- #ifdef DLL_BUILD
- #define _RVCDLL_EXPORT_ __declspec(dllexport)
- #else
- #define _RVCDLL_EXPORT_ __declspec(dllimport)
- #endif
- #define Extern_C extern "C" __declspec(dllexport)
- #endif // _RVCINIT_BASE_H_
|