Base.h 337 B

12345678910111213141516
  1. #ifndef _RVCINIT_BASE_H_
  2. #define _RVCINIT_BASE_H_
  3. typedef enum{
  4. CMB_LIB = 100, CMB_FLB, PAD_LIB, PAD_FLB, ERROR_TYPE
  5. }SYSTEM_TYPE;
  6. #ifdef DLL_BUILD
  7. #define _RVCDLL_EXPORT_ __declspec(dllexport)
  8. #else
  9. #define _RVCDLL_EXPORT_ __declspec(dllimport)
  10. #endif
  11. #define Extern_C extern "C" __declspec(dllexport)
  12. #endif // _RVCINIT_BASE_H_