diff options
Diffstat (limited to 'src/core/log.h')
-rw-r--r-- | src/core/log.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/core/log.h b/src/core/log.h new file mode 100644 index 0000000..e8dde39 --- /dev/null +++ b/src/core/log.h @@ -0,0 +1,12 @@ +/* BSD-2-Clause license + * + * Copyright (c) 2018-2023 NST <www.newinfosec.ru>, sss <sss at dark-alexandr dot net>. + * + */ + +#pragma once + +void log_msg( + const uint8_t *buf, size_t buf_len, wrdp_log_level_e type, uint16_t flags); + +void log_msg_ex(log_msg_info *msg_info); |