New messagebox system
This commit is contained in:
@ -1,6 +0,0 @@
|
||||
#pragma once
|
||||
|
||||
#include <wchar.h>
|
||||
|
||||
void err_mb_a(const char *format, ...);
|
||||
void err_mb_w(const wchar_t *format, ...);
|
||||
12
game_payload/include/msg.h
Normal file
12
game_payload/include/msg.h
Normal file
@ -0,0 +1,12 @@
|
||||
#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, ...);
|
||||
Reference in New Issue
Block a user