use for all targets
[AROS.git] / workbench / prefs / reqtools / misc.c
blob4acfe5de82e0acaab3083ed9cf70001204c25b0d
1 /*
2 Copyright © 2010, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <exec/types.h>
8 #include <proto/dos.h>
9 #include <proto/intuition.h>
11 #include <stdio.h>
13 #include "locale.h"
14 #include "misc.h"
16 VOID ShowMessage(CONST_STRPTR msg)
18 struct EasyStruct es;
20 if (msg)
22 if (IntuitionBase)
24 es.es_StructSize = sizeof(es);
25 es.es_Flags = 0;
26 es.es_Title = (CONST_STRPTR) "ReqTools";
27 es.es_TextFormat = (CONST_STRPTR) msg;
28 es.es_GadgetFormat = _(MSG_OK);
30 EasyRequestArgs(NULL, &es, NULL, NULL); /* win=NULL -> wb screen */
32 else
34 printf("ReqTools: %s\n", msg);