jadeite/game_payload/include/msg.h

13 lines
295 B
C
Raw Normal View History

2023-06-08 18:44:42 +00:00
#pragma once
#include <wchar.h>
void msg_err_a(const char *format, ...);
void msg_err_w(const wchar_t *format, ...);
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, ...);