forked from KolibriOS/kolibrios
9a24f3f7fb
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);
|
|
}
|