blob: db06d4725488332d35de59cda23294e721291e61 [file] [log] [blame]
David 'Digit' Turner1b0544d2014-03-27 13:51:24 +01001/* $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/X.h>
35#include <X11/Xmd.h>
36#include <X11/extensions/dpmsconst.h>
37
38_XFUNCPROTOBEGIN
39
40extern Bool DPMSQueryExtension(Display *, int *, int *);
41extern Status DPMSGetVersion(Display *, int *, int *);
42extern Bool DPMSCapable(Display *);
43extern Status DPMSSetTimeouts(Display *, CARD16, CARD16, CARD16);
44extern Bool DPMSGetTimeouts(Display *, CARD16 *, CARD16 *, CARD16 *);
45extern Status DPMSEnable(Display *);
46extern Status DPMSDisable(Display *);
47extern Status DPMSForceLevel(Display *, CARD16);
48extern Status DPMSInfo(Display *, CARD16 *, BOOL *);
49
50_XFUNCPROTOEND
51
52#endif /* !_X11_EXTENSIONS_DPMS_H */
53