1234567891011121314151617181920 |
- #ifndef MOD_LOG_H
- #define MOD_LOG_H
- #pragma once
- #ifdef __cplusplus
- extern "C" {
- #endif
- void DbgSphost(const char *formatStr, ...);
- int createLogProducer(const char *entityName, const char* id);
- void DestroyLogProducer();
- void DbgWithLink_sphost(const char *formatStr, ...);
- #ifdef __cplusplus
- }
- #endif
- #endif
|