blob: 9d4521cf963d108faf4c5850ac030b28c2c9e8f5 (
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.h>
/// @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 this function returns nothing.
CA_EXTERN_C VoidType DlgMsgBox(CharacterTypeUTF8* title, CharacterTypeUTF8* format, ...);
|