aboutsummaryrefslogtreecommitdiff
path: root/nexgb/auto_dpms.go
diff options
context:
space:
mode:
authorAndrew Gallant (Ocelot) <Andrew.Gallant@tufts.edu>2012-05-07 01:00:45 -0400
committerAndrew Gallant (Ocelot) <Andrew.Gallant@tufts.edu>2012-05-07 01:00:45 -0400
commitfd30f1512a713ae5b3cbacddfe9f29dfccc82047 (patch)
tree5801b9fe74106d9780efa23cd1b2c238ba5ffad9 /nexgb/auto_dpms.go
parent6d545e723a7e972998a0e77adcf2219a31a9b800 (diff)
downloadhaven-fd30f1512a713ae5b3cbacddfe9f29dfccc82047.tar.gz
haven-fd30f1512a713ae5b3cbacddfe9f29dfccc82047.tar.xz
haven-fd30f1512a713ae5b3cbacddfe9f29dfccc82047.zip
added tests
Diffstat (limited to 'nexgb/auto_dpms.go')
-rw-r--r--nexgb/auto_dpms.go30
1 files changed, 27 insertions, 3 deletions
diff --git a/nexgb/auto_dpms.go b/nexgb/auto_dpms.go
index a1f733b..eee6688 100644
--- a/nexgb/auto_dpms.go
+++ b/nexgb/auto_dpms.go
@@ -1,10 +1,36 @@
package xgb
/*
- This file was generated by dpms.xml on May 6 2012 3:00:44am EDT.
+ This file was generated by dpms.xml on May 6 2012 5:48:47pm EDT.
This file is automatically generated. Edit at your peril!
*/
+// DpmsInit must be called before using the DPMS extension.
+func (c *Conn) DpmsInit() error {
+ reply, err := c.QueryExtension(4, "DPMS").Reply()
+ switch {
+ case err != nil:
+ return err
+ case !reply.Present:
+ return newError("No extension named DPMS could be found on on the server.")
+ }
+
+ c.extLock.Lock()
+ c.extensions["DPMS"] = reply.MajorOpcode
+ for evNum, fun := range newExtEventFuncs["DPMS"] {
+ newEventFuncs[int(reply.FirstEvent)+evNum] = fun
+ }
+ c.extLock.Unlock()
+
+ return nil
+}
+
+func init() {
+ newExtEventFuncs["DPMS"] = make(map[int]newEventFun)
+}
+
+// Skipping definition for base type 'Int32'
+
// Skipping definition for base type 'Void'
// Skipping definition for base type 'Byte'
@@ -29,8 +55,6 @@ package xgb
// Skipping definition for base type 'Int16'
-// Skipping definition for base type 'Int32'
-
const (
DpmsDPMSModeOn = 0
DpmsDPMSModeStandby = 1