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
This commit is contained in:
turbocat
2021-06-10 22:27:24 +00:00
parent 4dde75a022
commit 599cbe26ed
9 changed files with 332 additions and 5 deletions

View File

@@ -0,0 +1,8 @@
#include <clayer/msgbox.h>
int main()
{
msgbox *msg1 = NULL;
msg1 = kolibri_new_msgbox("Title", "Text in window", 0, "Ok");
kolibri_start_msgbox(msg1, NULL);
}