Add libimg example, update other examples

git-svn-id: svn://kolibrios.org@8187 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
maxcodehack
2020-11-13 17:47:07 +00:00
parent d9bb1a8d08
commit 9a24f3f7fb
4 changed files with 135 additions and 39 deletions

View File

@@ -2,7 +2,7 @@
int main()
{
msgbox *msg1=NULL;
msg1 = kolibri_new_msgbox("MsgBoxTest", "Hello world!", 0, "ok");
msgbox *msg1 = NULL;
msg1 = kolibri_new_msgbox("Title", "Text in window", 0, "Ok");
kolibri_start_msgbox(msg1, NULL);
}