kolibrios/programs/develop/ktcc/trunk/libc.obj/samples/clayer/msgbox.c
turbocat 99922e4c2c Update skipped files in previous commit
git-svn-id: svn://kolibrios.org@9766 a494cfbc-eb01-0410-851d-a64ba20cac60
2022-04-15 09:11:49 +00:00

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);
}