dpms.h revision 6cda817a
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#if !defined(_XKBSRV_H_) && !defined(_XLIB_H_)
40/* XXX: this is a hack to let old xf86-video-* build. Does not belong here. */
41typedef int Status;
42typedef pointer XPointer;
43typedef struct _XDisplay Display;
44#endif
45
46#ifndef DPMS_SERVER
47_XFUNCPROTOBEGIN
48
49extern Bool DPMSQueryExtension(Display *, int *, int *);
50extern Status DPMSGetVersion(Display *, int *, int *);
51extern Bool DPMSCapable(Display *);
52extern Status DPMSSetTimeouts(Display *, CARD16, CARD16, CARD16);
53extern Bool DPMSGetTimeouts(Display *, CARD16 *, CARD16 *, CARD16 *);
54extern Status DPMSEnable(Display *);
55extern Status DPMSDisable(Display *);
56extern Status DPMSForceLevel(Display *, CARD16);
57extern Status DPMSInfo(Display *, CARD16 *, BOOL *);
58
59_XFUNCPROTOEND
60#endif
61
62#endif /* !_X11_EXTENSIONS_DPMS_H */
63
64