mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-17 12:22:35 +03:00
![maxcodehack](/assets/img/avatar_default.png)
Add libimg example, update other examples git-svn-id: svn://kolibrios.org@8187 a494cfbc-eb01-0410-851d-a64ba20cac60
9 lines
181 B
C
9 lines
181 B
C
#include <clayer/msgbox.h>
|
|
|
|
int main()
|
|
{
|
|
msgbox *msg1 = NULL;
|
|
msg1 = kolibri_new_msgbox("Title", "Text in window", 0, "Ok");
|
|
kolibri_start_msgbox(msg1, NULL);
|
|
}
|