log_base.h 186 B

1234567891011121314
  1. #ifndef __LOGBASE_H__
  2. #define __LOGBASE_H__
  3. #pragma once
  4. #include "list.h"
  5. typedef struct logbase_t {
  6. char *inst_name;
  7. int level;
  8. void *factory;
  9. }logbase_t;
  10. #endif //__LOGBASE_H__