Don't keep asking for S2EVENT_CONNECT reports if driver doen't
[AROS.git] / workbench / prefs / printer / misc.c
blobc2ee5a699f992ad70ccd5a0e8f3ba88e7768eba9
1 /*
2 Copyright © 2003, 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"
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) "Printer";
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("Printer: %s\n", msg);