blob: 431eca1bcecf50999842fd0c4fbd70e4e0e9e4e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
* Copyright (C) 2001-2002 Bart Massey and Jamey Sharp.
* All Rights Reserved. See the file COPYING in this directory
* for licensing information.
*/
#ifndef REPLY_FORMATS_H
#define REPLY_FORMATS_H
#include <X11/XCB/xcb.h>
int formatGetWindowAttributesReply(XCBWINDOW wid, XCBGetWindowAttributesRep *reply);
int formatGetGeometryReply(XCBWINDOW wid, XCBGetGeometryRep *reply);
int formatQueryTreeReply(XCBWINDOW wid, XCBQueryTreeRep *reply);
int formatEvent(XCBGenericEvent *e);
#endif /* REPLY_FORMATS_H */
|