diff options
| author | Andrew Gallant (Ocelot) <[email protected]> | 2012-05-07 01:00:45 -0400 |
|---|---|---|
| committer | Andrew Gallant (Ocelot) <[email protected]> | 2012-05-07 01:00:45 -0400 |
| commit | 902f3ad5b8e759879141c3b77a44e3bfdaa298bb (patch) | |
| tree | e7197eac09d56059cad0e9e2dbfb9379a62907eb /auto_ge.go | |
| parent | 26191c0f45bd6a112085c44c271a135d65c80f18 (diff) | |
added tests
Diffstat (limited to 'auto_ge.go')
| -rw-r--r-- | auto_ge.go | 34 |
1 files changed, 29 insertions, 5 deletions
@@ -1,17 +1,33 @@ package xgb /* - This file was generated by ge.xml on May 6 2012 3:00:44am EDT. + This file was generated by ge.xml on May 6 2012 5:48:47pm EDT. This file is automatically generated. Edit at your peril! */ -// Skipping definition for base type 'Id' +// GeInit must be called before using the Generic Event Extension extension. +func (c *Conn) GeInit() error { + reply, err := c.QueryExtension(23, "Generic Event Extension").Reply() + switch { + case err != nil: + return err + case !reply.Present: + return newError("No extension named Generic Event Extension could be found on on the server.") + } -// Skipping definition for base type 'Card8' + c.extLock.Lock() + c.extensions["Generic Event Extension"] = reply.MajorOpcode + for evNum, fun := range newExtEventFuncs["Generic Event Extension"] { + newEventFuncs[int(reply.FirstEvent)+evNum] = fun + } + c.extLock.Unlock() -// Skipping definition for base type 'Int16' + return nil +} -// Skipping definition for base type 'Int32' +func init() { + newExtEventFuncs["Generic Event Extension"] = make(map[int]newEventFun) +} // Skipping definition for base type 'Void' @@ -31,6 +47,14 @@ package xgb // 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' + // Request GeQueryVersion // size: 8 type GeQueryVersionCookie struct { |
