2023-06-08 18:44:42 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <wchar.h>
|
|
|
|
|
2023-12-27 12:11:02 +00:00
|
|
|
void __attribute__((noreturn)) msg_err_a(const char *format, ...);
|
|
|
|
void __attribute__((noreturn)) msg_err_w(const wchar_t *format, ...);
|
2023-06-08 18:44:42 +00:00
|
|
|
|
|
|
|
void msg_warn_a(const char *format, ...);
|
|
|
|
void msg_warn_w(const wchar_t *format, ...);
|
|
|
|
|
|
|
|
void msg_info_a(const char *format, ...);
|
|
|
|
void msg_info_w(const wchar_t *format, ...);
|