diff options
author | Andrew Gallant (Ocelot) <Andrew.Gallant@tufts.edu> | 2012-05-07 01:00:45 -0400 |
---|---|---|
committer | Andrew Gallant (Ocelot) <Andrew.Gallant@tufts.edu> | 2012-05-07 01:00:45 -0400 |
commit | fd30f1512a713ae5b3cbacddfe9f29dfccc82047 (patch) | |
tree | 5801b9fe74106d9780efa23cd1b2c238ba5ffad9 /nexgb/auto_xinerama.go | |
parent | 6d545e723a7e972998a0e77adcf2219a31a9b800 (diff) | |
download | haven-fd30f1512a713ae5b3cbacddfe9f29dfccc82047.tar.gz haven-fd30f1512a713ae5b3cbacddfe9f29dfccc82047.tar.xz haven-fd30f1512a713ae5b3cbacddfe9f29dfccc82047.zip |
added tests
Diffstat (limited to 'nexgb/auto_xinerama.go')
-rw-r--r-- | nexgb/auto_xinerama.go | 46 |
1 files changed, 35 insertions, 11 deletions
diff --git a/nexgb/auto_xinerama.go b/nexgb/auto_xinerama.go index 6c08447..d751710 100644 --- a/nexgb/auto_xinerama.go +++ b/nexgb/auto_xinerama.go @@ -1,7 +1,7 @@ package xgb /* - This file was generated by xinerama.xml on May 6 2012 3:00:45am EDT. + This file was generated by xinerama.xml on May 6 2012 5:48:48pm EDT. This file is automatically generated. Edit at your peril! */ @@ -9,19 +9,29 @@ package xgb // in one package. They are still listed here for reference. // import "xproto" -// Skipping definition for base type 'Float' - -// Skipping definition for base type 'Id' - -// Skipping definition for base type 'Card8' - -// Skipping definition for base type 'Int16' +// XineramaInit must be called before using the XINERAMA extension. +func (c *Conn) XineramaInit() error { + reply, err := c.QueryExtension(8, "XINERAMA").Reply() + switch { + case err != nil: + return err + case !reply.Present: + return newError("No extension named XINERAMA could be found on on the server.") + } -// Skipping definition for base type 'Int32' + c.extLock.Lock() + c.extensions["XINERAMA"] = reply.MajorOpcode + for evNum, fun := range newExtEventFuncs["XINERAMA"] { + newEventFuncs[int(reply.FirstEvent)+evNum] = fun + } + c.extLock.Unlock() -// Skipping definition for base type 'Void' + return nil +} -// Skipping definition for base type 'Byte' +func init() { + newExtEventFuncs["XINERAMA"] = make(map[int]newEventFun) +} // Skipping definition for base type 'Int8' @@ -35,6 +45,20 @@ package xgb // Skipping definition for base type 'Bool' +// Skipping definition for base type 'Float' + +// Skipping definition for base type 'Id' + +// Skipping definition for base type 'Card8' + +// Skipping definition for base type 'Int16' + +// Skipping definition for base type 'Int32' + +// Skipping definition for base type 'Void' + +// Skipping definition for base type 'Byte' + // 'XineramaScreenInfo' struct definition // Size: 8 type XineramaScreenInfo struct { |