summaryrefslogtreecommitdiff
path: root/randr/rrmode.c
diff options
context:
space:
mode:
authorKeith Packard <keithp@guitar.keithp.com>2006-09-19 22:48:54 -0700
committerKeith Packard <keithp@guitar.keithp.com>2006-09-19 22:48:54 -0700
commitef1f3248cb5fff0a02c0059f865c4d931eba23a6 (patch)
treeeba375889f7b55b520ba875e7adcf7f599f8ab42 /randr/rrmode.c
parent07112adb0802d28488de5a495aa61bb3cfc280b6 (diff)
Split out 1.0-style info and new property routines to their own files.
Diffstat (limited to 'randr/rrmode.c')
-rw-r--r--randr/rrmode.c41
1 files changed, 41 insertions, 0 deletions
diff --git a/randr/rrmode.c b/randr/rrmode.c
index 4e44e7d82..ab0ea18d9 100644
--- a/randr/rrmode.c
+++ b/randr/rrmode.c
@@ -103,3 +103,44 @@ RRModeInit (void)
#endif
return TRUE;
}
+
+int
+ProcRRCreateMode (ClientPtr client)
+{
+ REQUEST(xRRCreateModeReq);
+
+ REQUEST_SIZE_MATCH(xRRCreateModeReq);
+ (void) stuff;
+ return BadImplementation;
+}
+
+int
+ProcRRDestroyMode (ClientPtr client)
+{
+ REQUEST(xRRDestroyModeReq);
+
+ REQUEST_SIZE_MATCH(xRRDestroyModeReq);
+ (void) stuff;
+ return BadImplementation;
+}
+
+int
+ProcRRAddOutputMode (ClientPtr client)
+{
+ REQUEST(xRRAddOutputModeReq);
+
+ REQUEST_SIZE_MATCH(xRRAddOutputModeReq);
+ (void) stuff;
+ return BadImplementation;
+}
+
+int
+ProcRRDeleteOutputMode (ClientPtr client)
+{
+ REQUEST(xRRDeleteOutputModeReq);
+
+ REQUEST_SIZE_MATCH(xRRDeleteOutputModeReq);
+ (void) stuff;
+ return BadImplementation;
+}
+