core_init.h 384 B

123456789101112131415
  1. #ifndef AFUN_INIT_H
  2. #define AFUN_INIT_H
  3. #include "aFunCoreExport.h"
  4. #include "stdbool.h"
  5. #include <setjmp.h>
  6. #include "tool.h"
  7. #ifdef aFunWIN32
  8. #include "Windows.h"
  9. #endif
  10. AFUN_CORE_EXPORT extern Logger *aFunCoreLogger;
  11. AFUN_CORE_EXPORT bool aFunCoreInit(char *log_dir, LogFactoryPrintConsole print_console, bool fe, bool se, jmp_buf *buf, LogLevel level);
  12. #endif //AFUN_INIT_H