dpms.h revision 04968e39
1/* $Xorg: dpms.h,v 1.3 2000/08/18 04:05:45 coskrey Exp $ */
2/*****************************************************************
3
4Copyright (c) 1996 Digital Equipment Corporation, Maynard, Massachusetts.
5
6Permission is hereby granted, free of charge, to any person obtaining a copy
7of this software and associated documentation files (the "Software"), to deal
8in the Software without restriction, including without limitation the rights
9to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10copies of the Software.
11
12The above copyright notice and this permission notice shall be included in
13all copies or substantial portions of the Software.
14
15THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18DIGITAL EQUIPMENT CORPORATION BE LIABLE FOR ANY CLAIM, DAMAGES, INCLUDING,
19BUT NOT LIMITED TO CONSEQUENTIAL OR INCIDENTAL DAMAGES, OR OTHER LIABILITY,
20WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
21IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22
23Except as contained in this notice, the name of Digital Equipment Corporation
24shall not be used in advertising or otherwise to promote the sale, use or other
25dealings in this Software without prior written authorization from Digital
26Equipment Corporation.
27
28******************************************************************/
29/* $XFree86: xc/include/extensions/dpms.h,v 3.4 2000/03/15 16:51:51 tsi Exp $ */
30
31#ifndef _X11_EXTENSIONS_DPMS_H
32#define _X11_EXTENSIONS_DPMS_H 1
33
34#include <X11/Xfuncproto.h>
35#include <X11/X.h>
36#include <X11/Xmd.h>
37#include <X11/extensions/dpmsconst.h>
38
39#ifndef Status
40/* XXX: this is a hack to let old xf86-video-* build. Does not belong here. */
41#define Bool int
42#define Status int
43typedef struct _XDisplay Display;
44#endif
45
46_XFUNCPROTOBEGIN
47
48extern Bool DPMSQueryExtension(Display *, int *, int *);
49extern Status DPMSGetVersion(Display *, int *, int *);
50extern Bool DPMSCapable(Display *);
51extern Status DPMSSetTimeouts(Display *, CARD16, CARD16, CARD16);
52extern Bool DPMSGetTimeouts(Display *, CARD16 *, CARD16 *, CARD16 *);
53extern Status DPMSEnable(Display *);
54extern Status DPMSDisable(Display *);
55extern Status DPMSForceLevel(Display *, CARD16);
56extern Status DPMSInfo(Display *, CARD16 *, BOOL *);
57
58_XFUNCPROTOEND
59
60#endif /* !_X11_EXTENSIONS_DPMS_H */
61
62