StartUpBase.h 316 B

1234567891011121314151617
  1. #ifndef STARTUP_LOG_H
  2. #define STARTUP_LOG_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. SPBASE_API int addStartupLog(const char* module_entity, int idx);
  7. SPBASE_API int addStartupStep(int idx, const char* event, const char* status, int from, int to, int result);
  8. #ifdef __cplusplus
  9. } // extern "C" {
  10. #endif
  11. #endif