~ubuntu-branches/ubuntu/precise/xorg-server/precise-updates

« back to all changes in this revision

Viewing changes to Xext/xcmisc.c

Tags: 2:1.10.1-2
* Build xserver-xorg-core-udeb on hurd-i386.  Thanks, Samuel Thibault!
* Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
#define UINT32_MAX 0xffffffffU
47
47
#endif
48
48
 
49
 
static DISPATCH_PROC(ProcXCMiscDispatch);
50
 
static DISPATCH_PROC(ProcXCMiscGetVersion);
51
 
static DISPATCH_PROC(ProcXCMiscGetXIDList);
52
 
static DISPATCH_PROC(ProcXCMiscGetXIDRange);
53
 
static DISPATCH_PROC(SProcXCMiscDispatch);
54
 
static DISPATCH_PROC(SProcXCMiscGetVersion);
55
 
static DISPATCH_PROC(SProcXCMiscGetXIDList);
56
 
static DISPATCH_PROC(SProcXCMiscGetXIDRange);
57
 
 
58
 
void XCMiscExtensionInit(INITARGS);
59
 
 
60
 
void
61
 
XCMiscExtensionInit(INITARGS)
62
 
{
63
 
    AddExtension(XCMiscExtensionName, 0, 0,
64
 
                 ProcXCMiscDispatch, SProcXCMiscDispatch,
65
 
                 NULL, StandardMinorOpcode);
66
 
}
67
49
 
68
50
static int
69
51
ProcXCMiscGetVersion(ClientPtr client)
215
197
        return BadRequest;
216
198
    }
217
199
}
 
200
 
 
201
void
 
202
XCMiscExtensionInit(INITARGS)
 
203
{
 
204
    AddExtension(XCMiscExtensionName, 0, 0,
 
205
                 ProcXCMiscDispatch, SProcXCMiscDispatch,
 
206
                 NULL, StandardMinorOpcode);
 
207
}