summaryrefslogtreecommitdiff
path: root/auto_xc_misc.go
diff options
context:
space:
mode:
authorAndrew Gallant (Ocelot) <[email protected]>2012-05-07 01:00:45 -0400
committerAndrew Gallant (Ocelot) <[email protected]>2012-05-07 01:00:45 -0400
commit902f3ad5b8e759879141c3b77a44e3bfdaa298bb (patch)
treee7197eac09d56059cad0e9e2dbfb9379a62907eb /auto_xc_misc.go
parent26191c0f45bd6a112085c44c271a135d65c80f18 (diff)
added tests
Diffstat (limited to 'auto_xc_misc.go')
-rw-r--r--auto_xc_misc.go42
1 files changed, 33 insertions, 9 deletions
diff --git a/auto_xc_misc.go b/auto_xc_misc.go
index 48a5d1e..66ad03a 100644
--- a/auto_xc_misc.go
+++ b/auto_xc_misc.go
@@ -1,21 +1,33 @@
package xgb
/*
- This file was generated by xc_misc.xml on May 6 2012 3:00:44am EDT.
+ This file was generated by xc_misc.xml on May 6 2012 5:48:47pm EDT.
This file is automatically generated. Edit at your peril!
*/
-// Skipping definition for base type 'Float'
-
-// Skipping definition for base type 'Id'
-
-// Skipping definition for base type 'Card8'
+// Xc_miscInit must be called before using the XC-MISC extension.
+func (c *Conn) Xc_miscInit() error {
+ reply, err := c.QueryExtension(7, "XC-MISC").Reply()
+ switch {
+ case err != nil:
+ return err
+ case !reply.Present:
+ return newError("No extension named XC-MISC could be found on on the server.")
+ }
-// Skipping definition for base type 'Int16'
+ c.extLock.Lock()
+ c.extensions["XC-MISC"] = reply.MajorOpcode
+ for evNum, fun := range newExtEventFuncs["XC-MISC"] {
+ newEventFuncs[int(reply.FirstEvent)+evNum] = fun
+ }
+ c.extLock.Unlock()
-// Skipping definition for base type 'Int32'
+ return nil
+}
-// Skipping definition for base type 'Void'
+func init() {
+ newExtEventFuncs["XC-MISC"] = make(map[int]newEventFun)
+}
// Skipping definition for base type 'Byte'
@@ -31,6 +43,18 @@ 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'
+
// Request Xc_miscGetVersion
// size: 8
type Xc_miscGetVersionCookie struct {