xserver

xserver with xephyr scale patch
git clone https://git.neptards.moe/u3shit/xserver.git
Log | Files | Refs | README | LICENSE

dpmsproc.h (449B)


      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 
     12 extern int DPMSSet(ClientPtr client, int level);
     13 extern Bool DPMSSupported(void);
     14 
     15 extern CARD32 DPMSStandbyTime;
     16 extern CARD32 DPMSSuspendTime;
     17 extern CARD32 DPMSOffTime;
     18 extern CARD16 DPMSPowerLevel;
     19 extern Bool DPMSEnabled;
     20 extern Bool DPMSDisabledSwitch;
     21 
     22 #endif