blob: 0faaae674643f2dfa78a2439cccfeed73692b332 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* -------------------------------------------
Copyright Mahrouss Logic
------------------------------------------- */
#pragma once
#include <System.Core/Headers/Window.hxx>
/// @brief Shows an message box with a formatting.
/// @param title the message box title
/// @param format the format
/// @param va_list the va args, that goes along with it.
/// @return void
CA_EXTERN_C VoidType DlgMsgBox(CharacterTypeUTF8* title, CharacterTypeUTF8* format, ...);
|