2 Copyright © 2003-2010, The AROS Development Team. All rights reserved.
6 #include <exec/types.h>
9 #include <proto/intuition.h>
15 void ShowMessage(CONST_STRPTR msg
)
23 es
.es_StructSize
= sizeof(es
);
25 es
.es_Title
= (CONST_STRPTR
) "Input";
26 es
.es_TextFormat
= (CONST_STRPTR
) msg
;
27 es
.es_GadgetFormat
= "OK";
29 EasyRequestArgs(NULL
, &es
, NULL
, NULL
); /* win=NULL -> wb screen */
33 printf("Input: %s\n", msg
);