You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
746 B
C
53 lines
746 B
C
#include "elog_file.h"
|
|
|
|
/**
|
|
* EasyLogger flile log pulgin port initialize
|
|
*
|
|
* @return result
|
|
*/
|
|
ElogErrCode elog_file_port_init(void) {
|
|
ElogErrCode result = ELOG_NO_ERR;
|
|
|
|
/* add your code here */
|
|
|
|
return result;
|
|
}
|
|
|
|
/**
|
|
* output file saved log port interface
|
|
*
|
|
* @param log file saved log
|
|
* @param size log size
|
|
*/
|
|
void elog_file_port_output(const char *log, size_t size) {
|
|
|
|
/* add your code here */
|
|
|
|
}
|
|
|
|
/**
|
|
* file log lock
|
|
*/
|
|
void elog_file_port_lock(void) {
|
|
|
|
/* add your code here */
|
|
|
|
}
|
|
|
|
/**
|
|
* file log unlock
|
|
*/
|
|
void elog_file_port_unlock(void) {
|
|
|
|
/* add your code here */
|
|
|
|
}
|
|
/**
|
|
* file log deinit
|
|
*/
|
|
void elog_file_port_deinit(void) {
|
|
|
|
/* add your code here */
|
|
|
|
}
|