-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcups_private.modulemap
More file actions
74 lines (61 loc) · 1.04 KB
/
cups_private.modulemap
File metadata and controls
74 lines (61 loc) · 1.04 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
module CUPS_Private [system] {
header "cups/cups-private.h"
export *
link "cups"
module array {
header "cups/array-private.h"
export *
}
module config {
header "cups/config.h"
export *
}
module debug {
header "cups/debug-private.h"
export *
}
module file {
header "cups/file-private.h"
export *
}
explicit module http {
header "cups/http-private.h"
export *
}
explicit module ipp {
header "cups/ipp-private.h"
export *
}
module language {
header "cups/language-private.h"
export *
}
#ifdef BUILD_FOR_MACOS
explicit module ppd {
header "cups/ppd-private.h"
export *
}
#endif
explicit module pwg {
header "cups/pwg-private.h"
export *
}
module raster {
header "cups/raster-private.h"
export *
}
#ifdef BUILD_FOR_MACOS
module snmp {
header "cups/snmp-private.h"
export *
}
#endif
module string {
header "cups/string-private.h"
export *
}
module thread {
header "cups/thread-private.h"
export *
}
}