msg.h 347 B

12345678910111213
  1. #pragma once
  2. #include <wchar.h>
  3. void __attribute__((noreturn)) msg_err_a(const char *format, ...);
  4. void __attribute__((noreturn)) msg_err_w(const wchar_t *format, ...);
  5. void msg_warn_a(const char *format, ...);
  6. void msg_warn_w(const wchar_t *format, ...);
  7. void msg_info_a(const char *format, ...);
  8. void msg_info_w(const wchar_t *format, ...);