SpHostLog.h 315 B

1234567891011121314151617181920
  1. #ifndef MOD_LOG_H
  2. #define MOD_LOG_H
  3. #pragma once
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. void DbgSphost(const char *formatStr, ...);
  8. int createLogProducer(const char *entityName, const char* id);
  9. void DestroyLogProducer();
  10. void DbgWithLink_sphost(const char *formatStr, ...);
  11. #ifdef __cplusplus
  12. }
  13. #endif
  14. #endif