summaryrefslogtreecommitdiff
path: root/XProto.glue.c
diff options
context:
space:
mode:
Diffstat (limited to 'XProto.glue.c')
-rw-r--r--XProto.glue.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/XProto.glue.c b/XProto.glue.c
new file mode 100644
index 0000000..6d74111
--- /dev/null
+++ b/XProto.glue.c
@@ -0,0 +1,13 @@
+#include "XProto.glue.h"
+
+CARD32 _internAtom(XCBConnection *c, BOOL onlyIfExists, CARD16 name_len, char *name)
+{
+ XCBInternAtomCookie cookie = XCBInternAtom(c, onlyIfExists, name_len, name);
+ return cookie.sequence;
+}
+
+CARD32 _ListFontsWithInfo(XCBConnection *c, CARD16 max_names, CARD16 pattern_len, char *pattern)
+{
+ XCBListFontsWithInfoCookie cookie = XCBListFontsWithInfo(c, max_names, pattern_len, pattern);
+ return cookie.sequence;
+}