forked from KolibriOS/kolibrios
df0d0be7d4
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
9 lines
179 B
C
9 lines
179 B
C
#include <kos/msgbox.h>
|
|
|
|
int main()
|
|
{
|
|
msgbox *msg1=NULL;
|
|
msg1 = kolibri_new_msgbox("MsgBoxTest", "Hello world!", 0, "ok");
|
|
kolibri_start_msgbox(msg1, NULL);
|
|
}
|