1/* Prototypes for functions that the DDX must provide */ 2 3#ifdef HAVE_DIX_CONFIG_H 4#include <dix-config.h> 5#endif 6 7#ifndef _DPMSPROC_H_ 8#define _DPMSPROC_H_ 9 10#include "dixstruct.h" 11 12extern int DPMSSet(ClientPtr client, int level); 13extern Bool DPMSSupported(void); 14 15extern CARD32 DPMSStandbyTime; 16extern CARD32 DPMSSuspendTime; 17extern CARD32 DPMSOffTime; 18extern CARD16 DPMSPowerLevel; 19extern Bool DPMSEnabled; 20extern Bool DPMSDisabledSwitch; 21 22#endif 23