blob: acfb465b4e39f0c7c621163cb7d9e9530491973d (
plain)
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
|
include ../common.mk
AUTOMAKE_OPTIONS = subdir-objects
AM_CFLAGS = $(XP_LCFLAGS) $(XP_CFLAGS)
LDADD = $(TCM) $(XP_LLIBS) $(XP_LIBS)
testprogdir = $(libexecdir)/$(subdir)
nobase_testprog_PROGRAMS = $(tprogs)
BUILT_SOURCES = $(tprogs:$(EXEEXT)=.c)
CLEANFILES = $(BUILT_SOURCES)
tprogs = \
pAllocColor \
pAllocColorCells \
pAllocColorPlanes \
pAllocNamedColor \
pAllowEvents \
pBadRequest \
pBell \
pChangeActivePointerGrab \
pChangeGC \
pChangeHosts \
pChangeKeyboardControl \
pChangeKeyboardMapping \
pChangePointerControl \
pChangeProperty \
pChangeSaveSet \
pChangeWindowAttributes \
pClearArea \
pCloseFont \
pConfigureWindow \
pConvertSelection \
pCopyArea \
pCopyColormapAndFree \
pCopyGC \
pCopyPlane \
pCirculateWindow \
pCreateColormap \
pCreateCursor \
pCreateGC \
pCreateGlyphCursor \
pCreatePixmap \
pCreateWindow \
pDeleteProperty \
pDestroySubwindows \
pDestroyWindow \
pFillPoly \
pFreeColormap \
pFreeColors \
pFreeCursor \
pForceScreenSaver \
pFreeGC \
pFreePixmap \
pGrabButton \
pGrabKey \
pGrabKeyboard \
pGrabPointer \
pGrabServer \
pGetAtomName \
pGetFontPath \
pGetGeometry \
pGetImage \
pGetInputFocus \
pGetKeyboardControl \
pGetKeyboardMapping \
pGetModifierMapping \
pGetMotionEvents \
pGetPointerControl \
pGetPointerMapping \
pGetProperty \
pGetScreenSaver \
pGetSelectionOwner \
pGetWindowAttributes \
pImageText16 \
pImageText8 \
pInstallColormap \
pInternAtom \
pKillClient \
pLookupColor \
pListExtensions \
pListFonts \
pListFontsWithInfo \
pListHosts \
pListInstalledColormaps \
pListProperties \
pMapSubwindows \
pMapWindow \
pNoOperation \
pOpenDisplay \
pOpenFont \
pPolyArc \
pPolyFillArc \
pPolyFillRectangle \
pPolyLine \
pPolyPoint \
pPolyRectangle \
pPolySegment \
pPolyText16 \
pPolyText8 \
pPutImage \
pQueryBestSize \
pQueryColors \
pQueryExtension \
pQueryFont \
pQueryKeymap \
pQueryPointer \
pQueryTree \
pQueryTextExtents \
pRecolorCursor \
pReparentWindow \
pRotateProperties \
pSendEvent \
pSetAccessControl \
pSetClipRectangles \
pSetCloseDownMode \
pSetDashes \
pSetFontPath \
pSetInputFocus \
pSetModifierMapping \
pSetPointerMapping \
pStoreColors \
pStoreNamedColor \
pSetScreenSaver \
pSetSelectionOwner \
pTranslateCoords \
pUngrabButton \
pUngrabKey \
pUngrabKeyboard \
pUngrabPointer \
pUngrabServer \
pUnmapSubwindows \
pUnmapWindow \
pUninstallColormap \
pWarpPointer
|