kolibrios/programs/develop/ktcc/trunk/libc.obj/samples/clayer/msgbox.c
turbocat 599cbe26ed ktcc + libc.obj:
- ksys.h - added event mask enum
- samples - old examples updated
- delete junk files

git-svn-id: svn://kolibrios.org@8818 a494cfbc-eb01-0410-851d-a64ba20cac60
2021-06-10 22:27:24 +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);
}