aboutsummaryrefslogtreecommitdiffstats
path: root/distrib/sdl-1.2.12/src/video/Xext/extensions/Xinerama.h
diff options
context:
space:
mode:
authorJesse Hall <jessehall@google.com>2012-07-23 19:59:26 -0700
committerandroid code review <noreply-gerritcodereview@google.com>2012-07-23 19:59:27 -0700
commite4f78166b531cad2bb474bae8031b66024c7df4b (patch)
treeb6b2aa300fc08f7fa20d545a7255d4a9a748d282 /distrib/sdl-1.2.12/src/video/Xext/extensions/Xinerama.h
parent4b0ca3716e04e4b445fd987e877f07bba6ce06cd (diff)
parentd8239786b306ffda6d5d73753d01f0ad3358e1a0 (diff)
downloadexternal_qemu-e4f78166b531cad2bb474bae8031b66024c7df4b.zip
external_qemu-e4f78166b531cad2bb474bae8031b66024c7df4b.tar.gz
external_qemu-e4f78166b531cad2bb474bae8031b66024c7df4b.tar.bz2
Merge "Delete sdl-1.2.12"
Diffstat (limited to 'distrib/sdl-1.2.12/src/video/Xext/extensions/Xinerama.h')
-rw-r--r--distrib/sdl-1.2.12/src/video/Xext/extensions/Xinerama.h46
1 files changed, 0 insertions, 46 deletions
diff --git a/distrib/sdl-1.2.12/src/video/Xext/extensions/Xinerama.h b/distrib/sdl-1.2.12/src/video/Xext/extensions/Xinerama.h
deleted file mode 100644
index 54f2fe1..0000000
--- a/distrib/sdl-1.2.12/src/video/Xext/extensions/Xinerama.h
+++ /dev/null
@@ -1,46 +0,0 @@
-/* $XFree86: xc/include/extensions/Xinerama.h,v 3.2 2000/03/01 01:04:20 dawes Exp $ */
-
-#ifndef _Xinerama_h
-#define _Xinerama_h
-
-#include "SDL_name.h"
-
-typedef struct {
- int screen_number;
- short x_org;
- short y_org;
- short width;
- short height;
-} SDL_NAME(XineramaScreenInfo);
-
-Bool SDL_NAME(XineramaQueryExtension) (
- Display *dpy,
- int *event_base,
- int *error_base
-);
-
-Status SDL_NAME(XineramaQueryVersion)(
- Display *dpy,
- int *major,
- int *minor
-);
-
-Bool SDL_NAME(XineramaIsActive)(Display *dpy);
-
-
-/*
- Returns the number of heads and a pointer to an array of
- structures describing the position and size of the individual
- heads. Returns NULL and number = 0 if Xinerama is not active.
-
- Returned array should be freed with XFree().
-*/
-
-SDL_NAME(XineramaScreenInfo) *
-SDL_NAME(XineramaQueryScreens)(
- Display *dpy,
- int *number
-);
-
-#endif /* _Xinerama_h */
-