hunting/utils/LogC/src/logUb.h
2023-08-15 00:06:04 +08:00

20 lines
287 B
C

#ifndef _IPC_LOG_UBUNTU_H_
#define _IPC_LOG_UBUNTU_H_
#include "iLog.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct LogUbuntu LogUbuntu;
struct LogUbuntu {
ILog base;
};
RETURN_CODE_C new_log(LogUbuntu **log_ub);
#ifdef __cplusplus
}
#endif
#endif //_IPC_LOG_UBUNTU_H_