Added "libmsgbox" to ktcc.

Added examples for working with coff-libraries and "libmsgbox" to ktcc. 
Modified binutils to work normally via console.obj.

git-svn-id: svn://kolibrios.org@8098 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
superturbocat2001
2020-10-14 00:28:46 +00:00
parent 2f54c7de00
commit df0d0be7d4
8 changed files with 91 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
#include <kos/msgbox.h>
int main()
{
msgbox *msg1=NULL;
msg1 = kolibri_new_msgbox("MsgBoxTest", "Hello world!", 0, "ok");
kolibri_start_msgbox(msg1, NULL);
}