guardian.h 327 B

12345678910111213141516
  1. #ifndef GUARDIAN_H
  2. #define GUARDIAN_H
  3. #pragma once
  4. #ifdef __cplusplus
  5. extern "C"
  6. {
  7. #endif
  8. void LogToFile(bool bRevMsg, bool bCode1,bool bCode2,const char *msg, const char *revmsg = "", int code1 = 0, int code2 = 0, int type = 0);
  9. void LogSingleMsg(const char *msg,int type=0);
  10. #ifdef __cplusplus
  11. }
  12. #endif
  13. #endif //GUARDIAN_H