Xinerama.h
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:2k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $XdotOrg: xc/include/extensions/Xinerama.h,v 1.2 2004/04/23 18:43:06 eich Exp $ */
  2. /*
  3. Copyright 2003  The Open Group
  4. Permission to use, copy, modify, distribute, and sell this software and its
  5. documentation for any purpose is hereby granted without fee, provided that
  6. the above copyright notice appear in all copies and that both that
  7. copyright notice and this permission notice appear in supporting
  8. documentation.
  9. The above copyright notice and this permission notice shall be included in
  10. all copies or substantial portions of the Software.
  11. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  12. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  13. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  14. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  15. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  16. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  17. Except as contained in this notice, the name of The Open Group shall not be
  18. used in advertising or otherwise to promote the sale, use or other dealings
  19. in this Software without prior written authorization from The Open Group.
  20. */
  21. /* $XFree86: xc/include/extensions/Xinerama.h,v 3.3 2002/09/16 18:05:19 eich Exp $ */
  22. #ifndef _Xinerama_h
  23. #define _Xinerama_h
  24. #include <X11/Xlib.h>
  25. typedef struct {
  26.    int   screen_number;
  27.    short x_org;
  28.    short y_org;
  29.    short width;
  30.    short height;
  31. } XineramaScreenInfo;
  32. _XFUNCPROTOBEGIN
  33. Bool XineramaQueryExtension (
  34.    Display *dpy,
  35.    int     *event_base,
  36.    int     *error_base
  37. );
  38. Status XineramaQueryVersion(
  39.    Display *dpy,
  40.    int     *major_versionp,
  41.    int     *minor_versionp
  42. );
  43. Bool XineramaIsActive(Display *dpy);
  44. /* 
  45.    Returns the number of heads and a pointer to an array of
  46.    structures describing the position and size of the individual
  47.    heads.  Returns NULL and number = 0 if Xinerama is not active.
  48.   
  49.    Returned array should be freed with XFree().
  50. */
  51. XineramaScreenInfo * 
  52. XineramaQueryScreens(
  53.    Display *dpy,
  54.    int     *number
  55. );
  56. _XFUNCPROTOEND
  57. #endif /* _Xinerama_h */