-
Notifications
You must be signed in to change notification settings - Fork 4
/
cups.private.modulemap
74 lines (61 loc) · 1.13 KB
/
cups.private.modulemap
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-private.h"
link "cups"
export *
module array {
header "array-private.h"
export *
}
module config {
header "config.h"
export *
}
module debug {
header "debug-private.h"
export *
}
module file {
header "file-private.h"
export *
}
explicit module http {
header "http-private.h"
export *
}
explicit module ipp {
header "ipp-private.h"
export *
}
module language {
header "language-private.h"
export *
}
#ifdef BUILD_FOR_MACOS
explicit module ppd {
header "ppd-private.h"
export *
}
#endif
explicit module pwg {
header "pwg-private.h"
export *
}
module raster {
header "raster-private.h"
export *
}
#ifdef BUILD_FOR_MACOS
module snmp {
header "snmp-private.h"
export *
}
#endif
module string {
header "string-private.h"
export *
}
module thread {
header "thread-private.h"
export *
}
}