2 Copyright © 2003, The AROS Development Team. All rights reserved.
6 #include <exec/types.h>
9 #include <proto/intuition.h>
13 VOID
ShowMessage(CONST_STRPTR msg
)
21 es
.es_StructSize
= sizeof(es
);
23 es
.es_Title
= (CONST_STRPTR
) "Serial";
24 es
.es_TextFormat
= (CONST_STRPTR
) msg
;
25 es
.es_GadgetFormat
= _(MSG_OK
);
27 EasyRequestArgs(NULL
, &es
, NULL
, NULL
); /* win=NULL -> wb screen */
31 Printf("Serial: %s\n", msg
);