aboutsummaryrefslogtreecommitdiffstats
path: root/distrib/sdl-1.2.12/src/video/Xext/extensions/xme.h
diff options
context:
space:
mode:
authorJesse Hall <jessehall@google.com>2012-07-17 16:58:55 -0700
committerandroid code review <noreply-gerritcodereview@google.com>2012-07-23 19:59:14 -0700
commitd8239786b306ffda6d5d73753d01f0ad3358e1a0 (patch)
treeb6b2aa300fc08f7fa20d545a7255d4a9a748d282 /distrib/sdl-1.2.12/src/video/Xext/extensions/xme.h
parent4b0ca3716e04e4b445fd987e877f07bba6ce06cd (diff)
downloadexternal_qemu-d8239786b306ffda6d5d73753d01f0ad3358e1a0.zip
external_qemu-d8239786b306ffda6d5d73753d01f0ad3358e1a0.tar.gz
external_qemu-d8239786b306ffda6d5d73753d01f0ad3358e1a0.tar.bz2
Delete sdl-1.2.12
Change-Id: Ia96f80df04035ae84be3af468c945f2cec14f99c
Diffstat (limited to 'distrib/sdl-1.2.12/src/video/Xext/extensions/xme.h')
-rw-r--r--distrib/sdl-1.2.12/src/video/Xext/extensions/xme.h45
1 files changed, 0 insertions, 45 deletions
diff --git a/distrib/sdl-1.2.12/src/video/Xext/extensions/xme.h b/distrib/sdl-1.2.12/src/video/Xext/extensions/xme.h
deleted file mode 100644
index f550623..0000000
--- a/distrib/sdl-1.2.12/src/video/Xext/extensions/xme.h
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
- * Copyright 1993-2001 by Xi Graphics, Inc.
- * All Rights Reserved.
- *
- * Please see the LICENSE file accompanying this distribution for licensing
- * information.
- *
- * Please send any bug fixes and modifications to src@xig.com.
- *
- * $XiGId: xme.h,v 1.1.1.1 2001/11/19 19:01:10 jon Exp $
- *
- */
-
-
-#ifndef _XME_H_INCLUDED
-#define _XME_H_INCLUDED
-
-typedef struct {
- short x;
- short y;
- unsigned short w;
- unsigned short h;
-} XiGMiscViewInfo;
-
-typedef struct {
- unsigned short width;
- unsigned short height;
- int refresh;
-} XiGMiscResolutionInfo;
-
-extern Bool XiGMiscQueryVersion(Display *dpy, int *major, int *minor);
-extern int XiGMiscQueryViews(Display *dpy, int screen,
- XiGMiscViewInfo **pviews);
-extern int XiGMiscQueryResolutions(Display *dpy, int screen, int view,
- int *pactive,
- XiGMiscResolutionInfo **presolutions);
-extern void XiGMiscChangeResolution(Display *dpy, int screen, int view,
- int width, int height, int refresh);
-
-/* SDL addition from Ryan: free memory used by xme. */
-extern void XiGMiscDestroy(void);
-
-#endif /* _XME_H_INCLUDED */
-
-