summaryrefslogtreecommitdiff
path: root/uisimulator/x11/screenhack.h
diff options
context:
space:
mode:
Diffstat (limited to 'uisimulator/x11/screenhack.h')
-rw-r--r--uisimulator/x11/screenhack.h52
1 files changed, 0 insertions, 52 deletions
diff --git a/uisimulator/x11/screenhack.h b/uisimulator/x11/screenhack.h
deleted file mode 100644
index 5c2e5321ac..0000000000
--- a/uisimulator/x11/screenhack.h
+++ /dev/null
@@ -1,52 +0,0 @@
1/* xscreensaver, Copyright (c) 1992-1997 Jamie Zawinski <jwz@jwz.org>
2 *
3 * Permission to use, copy, modify, distribute, and sell this software and its
4 * documentation for any purpose is hereby granted without fee, provided that
5 * the above copyright notice appear in all copies and that both that
6 * copyright notice and this permission notice appear in supporting
7 * documentation. No representations are made about the suitability of this
8 * software for any purpose. It is provided "as is" without express or
9 * implied warranty.
10 */
11
12#ifndef __SCREENHACK_H__
13#define __SCREENHACK_H__
14
15#include <stdlib.h>
16#include <stdbool.h>
17
18#include "config-x11.h"
19
20#ifdef __hpux
21 /* Which of the ten billion standards does values.h belong to?
22 What systems always have it? */
23# include <values.h>
24#endif
25
26#include <stdio.h>
27
28#include <X11/Xlib.h>
29#include <X11/Xresource.h>
30#include <X11/Xos.h>
31#include <X11/Intrinsic.h>
32
33#include "resources.h"
34#include "visual.h"
35
36extern Bool mono_p;
37extern char *progname;
38extern char *progclass;
39extern XrmDatabase db;
40extern XrmOptionDescRec options [];
41extern char *defaults [];
42extern XtAppContext app;
43extern Display* dpy;
44extern Window window;
45
46extern void screenhack();
47extern int screenhack_handle_event(XEvent*, bool *);
48extern int screenhack_handle_events(bool *);
49extern void screen_redraw();
50extern void screen_resized();
51
52#endif /* __SCREENHACK_H__ */