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