summaryrefslogtreecommitdiff
path: root/XProto.glue.c
blob: 6d74111b861f7f37991a05a71d2521464b38f2b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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;
}