summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorPaulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>2009-01-29 19:42:06 -0200
committerPaulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>2009-01-29 19:42:06 -0200
commit7c72e844a794a9cedd9e614e919f696b47ede5e5 (patch)
treec37fc8298113e895d693f3580a3bf3c5e2d0951a /include
parent8123c94eba27d1a3eb3f509a79c229ddfa1f881a (diff)
downloadxorg-lib-libXinerama-7c72e844a794a9cedd9e614e919f696b47ede5e5.tar.gz
Janitor: ansification, make distcheck, compiler warnings.
Diffstat (limited to 'include')
-rw-r--r--include/X11/extensions/panoramiXext.h38
1 files changed, 37 insertions, 1 deletions
diff --git a/include/X11/extensions/panoramiXext.h b/include/X11/extensions/panoramiXext.h
index 280efc5..82682b8 100644
--- a/include/X11/extensions/panoramiXext.h
+++ b/include/X11/extensions/panoramiXext.h
@@ -28,6 +28,9 @@ Equipment Corporation.
/* THIS IS NOT AN X PROJECT TEAM SPECIFICATION */
+#ifndef _panoramiXext_h
+#define _panoramiXext_h
+
#define PANORAMIX_MAJOR_VERSION 1 /* current version number */
#define PANORAMIX_MINOR_VERSION 1
@@ -41,6 +44,39 @@ typedef struct {
XID eventMask; /* selected events for this client */
} XPanoramiXInfo;
+extern Bool XPanoramiXQueryExtension (
+ Display * /* dpy */,
+ int * /* event_base_return */,
+ int * /* error_base_return */
+);
+
+extern Status XPanoramiXQueryVersion(
+ Display * /* dpy */,
+ int * /* major_version_return */,
+ int * /* minor_version_return */
+);
+
extern XPanoramiXInfo *XPanoramiXAllocInfo (
void
-);
+);
+
+extern Status XPanoramiXGetState (
+ Display * /* dpy */,
+ Drawable /* drawable */,
+ XPanoramiXInfo * /* panoramiX_info */
+);
+
+extern Status XPanoramiXGetScreenCount (
+ Display * /* dpy */,
+ Drawable /* drawable */,
+ XPanoramiXInfo * /* panoramiX_info */
+);
+
+extern Status XPanoramiXGetScreenSize (
+ Display * /* dpy */,
+ Drawable /* drawable */,
+ int /* screen_num */,
+ XPanoramiXInfo * /* panoramiX_info */
+);
+
+#endif /* _panoramiXext_h */