summaryrefslogtreecommitdiff
path: root/xlogo.h
diff options
context:
space:
mode:
authorRoland Mainz <roland.mainz@nrubsig.org>2005-04-11 01:06:15 +0000
committerRoland Mainz <roland.mainz@nrubsig.org>2005-04-11 01:06:15 +0000
commit4d8b36adf2024e6c28ecd266fb3585fdbc2c66f2 (patch)
treeeb7f7b4b6123ad476acc90ec5d8463b5db599dd7 /xlogo.h
parentc4d739517989871ad786fd0f5e0ae6a683f7e92f (diff)
xc/programs/glxgears/glxgears.c xc/programs/xdbedizzy/xdbedizzy.c xc/programs/xedit/Imakefile xc/programs/xedit/Xedit-xprint.ad xc/programs/xedit/util.c xc/programs/xedit/xedit.h xc/programs/xlogo/print.c xc/programs/xlogo/xlogo.c xc/programs/xlogo/xlogo.h xc/programs/xman/Imakefile xc/programs/xman/print.h xc/programs/xmore/Imakefile xc/programs/xmore/print.c xc/programs/xmore/print.h xc/programs/xmore/printdialog.c xc/programs/xphelloworld/xpawhelloworld/xpawhelloworld.c xc/programs/xphelloworld/xphelloworld/xphelloworld.c xc/programs/xphelloworld/xpsimplehelloworld/xpsimplehelloworld.c xc/programs/xphelloworld/xpxmhelloworld/xpxmhelloworld.c //bugs.freedesktop.org/show_bug.cgi?id=790) attachment #2379 (https://bugs.freedesktop.org/attachment.cgi?id=2379) Implement support client+Xserver support for passing output (stdout+stderr) of the spooler command started by the Xprint server back to the application using the "xp-spooler-command-results" XPJobAttr attribute (applications can fetch the attribute value after the XPEndJobNotify event was received; more details can be found in http://xprint.mozdev.org/docs/dtprint_fspec.ps).
Diffstat (limited to 'xlogo.h')
-rw-r--r--xlogo.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/xlogo.h b/xlogo.h
index 50d96c3..f3fa722 100644
--- a/xlogo.h
+++ b/xlogo.h
@@ -35,9 +35,11 @@ in this Software without prior written authorization from The Open Group.
#define Error(x) { printf x ; exit(EXIT_FAILURE); }
#define Log(x) { if(userOptions.verbose) printf x; }
+#define Msg(x) { if((!userOptions.quiet) || userOptions.verbose) printf x; }
typedef struct {
Boolean verbose;
+ Boolean quiet;
Boolean printAndExit;
String printername;
String printfile;