SpShellBase.h 312 B

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