New messagebox system

This commit is contained in:
mkrsym1
2023-06-08 21:44:42 +03:00
parent 38dbf82f7f
commit 8662c84a0a
10 changed files with 64 additions and 47 deletions

View File

@ -1,6 +0,0 @@
#pragma once
#include <wchar.h>
void err_mb_a(const char *format, ...);
void err_mb_w(const wchar_t *format, ...);

View 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, ...);