diff options
author | Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> | 2009-01-29 19:42:06 -0200 |
---|---|---|
committer | Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> | 2009-01-29 19:42:06 -0200 |
commit | 7c72e844a794a9cedd9e614e919f696b47ede5e5 (patch) | |
tree | c37fc8298113e895d693f3580a3bf3c5e2d0951a /include | |
parent | 8123c94eba27d1a3eb3f509a79c229ddfa1f881a (diff) |
Janitor: ansification, make distcheck, compiler warnings.
Diffstat (limited to 'include')
-rw-r--r-- | include/X11/extensions/panoramiXext.h | 38 |
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 */ |