diff options
author | Roland Mainz <roland.mainz@nrubsig.org> | 2004-05-30 00:52:30 +0000 |
---|---|---|
committer | Roland Mainz <roland.mainz@nrubsig.org> | 2004-05-30 00:52:30 +0000 |
commit | 7b5bbd9057eba74e53ec0ed9a306e78a15bd96a8 (patch) | |
tree | fcb062ef4b60ab2dcc29a3f9178a527f23560209 /xmore.h | |
parent | 62ad6298a589dd16820c7d0bbfcd2b5381a2589e (diff) |
Fix for http://freedesktop.org/bugzilla/show_bug.cgi?id=693 - XMore and
XawPrintDialog work-in-progress, fixing various problems and adding
framework for i18n.
Diffstat (limited to 'xmore.h')
-rw-r--r-- | xmore.h | 12 |
1 files changed, 9 insertions, 3 deletions
@@ -28,8 +28,14 @@ in this Software without prior written authorization from The Open Group. #ifndef XMORE_XMORE_H #define XMORE_XMORE_H 1 -/* Global vars */ -extern const char *ProgramName; /* program name (from argv[0]) */ -extern const char *viewFileName; /* file to browse (from argv[1]) */ +#include <X11/Intrinsic.h> + +typedef struct { + Boolean verbose; + XFontSet textfont; +} XMoreResourceData, *XMoreResourceDataPtr; + +#define STANDARDFONT "-adobe-courier-medium-r-normal--12-*-*-*-*-*," \ + "-*-*-*-*-*-*-12-*-*-*-*-*" #endif /* !XMORE_XMORE_H */ |