summaryrefslogtreecommitdiff
path: root/print11.c
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@sun.com>2009-05-06 19:42:47 -0700
committerAlan Coopersmith <alan.coopersmith@sun.com>2009-05-06 21:44:36 -0700
commitaec53bc090ef6b63e16efebab3f8c8e6f329eb6b (patch)
tree549e13d5a09d341e4e3bddb16fa051b4a7f6dd22 /print11.c
parent02906bf1766ad1769e03f9372611087389ee23b0 (diff)
downloadxscope-aec53bc090ef6b63e16efebab3f8c8e6f329eb6b.tar.gz
Report names for all extensions, not just those we know
Move extension handling to new extensions.c & extensions.h files Start to make extension handling more generic/modular/extendable Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
Diffstat (limited to 'print11.c')
-rw-r--r--print11.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/print11.c b/print11.c
index 63de109..78abce0 100644
--- a/print11.c
+++ b/print11.c
@@ -54,12 +54,6 @@
#include "scope.h"
#include "x11.h"
-#include "bigreqscope.h"
-#include "lbxscope.h"
-#include "randrscope.h"
-#include "renderscope.h"
-#include "shmscope.h"
-#include "wcpscope.h"
static void PrintFailedSetUpReply(const unsigned char *buf);
static void PrintSuccessfulSetUpReply(const unsigned char *buf);
@@ -3500,25 +3494,6 @@ void
QueryExtensionReply (
const unsigned char *buf)
{
- if (LookForLBXFlag) {
- InitializeLBX(buf);
- LookForLBXFlag = 0;
- }
- if (LookForWCPFlag) {
- InitializeWCP(buf);
- }
- if (LookForRENDERFlag) {
- InitializeRENDER(buf);
- }
- if (LookForRANDRFlag) {
- InitializeRANDR(buf);
- }
- if (LookForMITSHMFlag) {
- InitializeMITSHM(buf);
- }
- if (LookForBIGREQFlag) {
- InitializeBIGREQ(buf);
- }
PrintField(RBf, 0, 1, REPLY, REPLYHEADER) /* QueryExtension */ ;
if (Verbose < 1)
return;