summaryrefslogtreecommitdiff
path: root/src/client.h
diff options
context:
space:
mode:
authorColin Hill <colin.james.hill@gmail.com>2011-01-11 17:55:05 -0800
committerColin Hill <colin.james.hill@gmail.com>2011-01-11 17:55:05 -0800
commit8279ab5788671f698956b94dbee7b775ec749a2a (patch)
treec705877067cb6fe1937c2db8eb5a44e237ffef47 /src/client.h
parent0b89f12500679b2056b26dcc771e42cbf1b1a645 (diff)
Added Paulo's source.
Diffstat (limited to 'src/client.h')
-rw-r--r--src/client.h56
1 files changed, 56 insertions, 0 deletions
diff --git a/src/client.h b/src/client.h
new file mode 100644
index 0000000..97af4bc
--- /dev/null
+++ b/src/client.h
@@ -0,0 +1,56 @@
+/*
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the next
+ * paragraph) shall be included in all copies or substantial portions of the
+ * Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+ * DEALINGS IN THE SOFTWARE.
+ *
+ * Author: Paulo Zanoni <pzanoni@mandriva.com>
+ */
+
+#include <xorg/colormap.h>
+#include <xorg/misc.h>
+
+struct NestedvClientPrivate;
+typedef struct NestedvClientPrivate *NestedvClientPrivatePtr;
+
+Bool NestedvClientCheckDisplay(char *displayName);
+
+Bool NestedvClientValidDepth(int depth);
+
+NestedvClientPrivatePtr NestedvClientCreateScreen(int scrnIndex,
+ char *displayName,
+ int width,
+ int height,
+ int originX,
+ int originY,
+ int depth,
+ int bitsPerPixel,
+ Pixel *retRedMask,
+ Pixel *retGreenMask,
+ Pixel *retBlueMask);
+
+char *NestedvClientGetFrameBuffer(NestedvClientPrivatePtr pPriv);
+
+void NestedvClientUpdateScreen(NestedvClientPrivatePtr pPriv,
+ int16_t x1,
+ int16_t y1,
+ int16_t x2,
+ int16_t y2);
+
+void NestedvClientTimerCallback(NestedvClientPrivatePtr pPriv);
+
+void NestedvClientCloseScreen(NestedvClientPrivatePtr pPriv);