Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-30 10:26:28

0001 /*****************************************************************
0002 
0003 Copyright (c) 1996 Digital Equipment Corporation, Maynard, Massachusetts.
0004 
0005 Permission is hereby granted, free of charge, to any person obtaining a copy
0006 of this software and associated documentation files (the "Software"), to deal
0007 in the Software without restriction, including without limitation the rights
0008 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
0009 copies of the Software.
0010 
0011 The above copyright notice and this permission notice shall be included in
0012 all copies or substantial portions of the Software.
0013 
0014 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
0015 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
0016 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
0017 DIGITAL EQUIPMENT CORPORATION BE LIABLE FOR ANY CLAIM, DAMAGES, INCLUDING,
0018 BUT NOT LIMITED TO CONSEQUENTIAL OR INCIDENTAL DAMAGES, OR OTHER LIABILITY,
0019 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
0020 IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
0021 
0022 Except as contained in this notice, the name of Digital Equipment Corporation
0023 shall not be used in advertising or otherwise to promote the sale, use or other
0024 dealings in this Software without prior written authorization from Digital
0025 Equipment Corporation.
0026 
0027 ******************************************************************/
0028 
0029 #ifndef _DPMSCONST_H
0030 #define _DPMSCONST_H 1
0031 
0032 #define DPMSMajorVersion    1
0033 #define DPMSMinorVersion    1
0034 
0035 #define DPMSExtensionName   "DPMS"
0036 
0037 #define DPMSModeOn  0
0038 #define DPMSModeStandby 1
0039 #define DPMSModeSuspend 2
0040 #define DPMSModeOff 3
0041 
0042 #endif /* !_DPMSCONST_H */
0043