1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27 #ifndef NEDIT_PRINTUTILS_H_INCLUDED
28 #define NEDIT_PRINTUTILS_H_INCLUDED
29
30 #include <X11/Intrinsic.h>
31
32
33 #define MAX_PRINT_ERROR_LENGTH 1024
34
35 #define DESTINATION_REMOTE 1
36 #define DESTINATION_LOCAL 2
37
38 void LoadPrintPreferences(XrmDatabase prefDB,
const char *appName,
39 const char *appClass,
int lookForFlpr);
40
41 #ifdef VMS
42 void PrintFile(Widget parent,
const char *PrintFileName,
const char *jobName,
int delete);
43 #else
44 void PrintFile(Widget parent,
const char *PrintFileName,
const char *jobName);
45 #endif
46
47 #endif
48