From 3e6b3544934cb71e3a3b0edf9bc184241ac1ad7f Mon Sep 17 00:00:00 2001 From: "Andrew Gallant (Ocelot)" Date: Fri, 11 May 2012 01:58:52 -0400 Subject: add a little more docs for errors --- nexgb/xinput/xinput.go | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) (limited to 'nexgb/xinput') diff --git a/nexgb/xinput/xinput.go b/nexgb/xinput/xinput.go index 2c2247c..0cb711b 100644 --- a/nexgb/xinput/xinput.go +++ b/nexgb/xinput/xinput.go @@ -2,7 +2,7 @@ package xinput /* - This file was generated by xinput.xml on May 10 2012 11:56:19pm EDT. + This file was generated by xinput.xml on May 11 2012 1:58:36am EDT. This file is automatically generated. Edit at your peril! */ @@ -40,6 +40,8 @@ func init() { xgb.NewExtErrorFuncs["XInputExtension"] = make(map[int]xgb.NewErrorFun) } +// Skipping definition for base type 'Float' + // Skipping definition for base type 'Card8' // Skipping definition for base type 'Int16' @@ -62,8 +64,6 @@ func init() { // Skipping definition for base type 'Bool' -// Skipping definition for base type 'Float' - const ( ValuatorModeRelative = 0 ValuatorModeAbsolute = 1 @@ -4372,10 +4372,13 @@ func (err DeviceError) SequenceId() uint16 { return err.Sequence } +// BadId returns the 'BadValue' number if one exists for the BadDevice error. If no bad value exists, 0 is returned. func (err DeviceError) BadId() uint32 { return 0 } +// Error returns a rudimentary string representation of the BadDevice error. + func (err DeviceError) Error() string { fieldVals := make([]string, 0, 0) fieldVals = append(fieldVals, "NiceName: "+err.NiceName) @@ -4415,10 +4418,13 @@ func (err EventError) SequenceId() uint16 { return err.Sequence } +// BadId returns the 'BadValue' number if one exists for the BadEvent error. If no bad value exists, 0 is returned. func (err EventError) BadId() uint32 { return 0 } +// Error returns a rudimentary string representation of the BadEvent error. + func (err EventError) Error() string { fieldVals := make([]string, 0, 0) fieldVals = append(fieldVals, "NiceName: "+err.NiceName) @@ -4458,10 +4464,13 @@ func (err ModeError) SequenceId() uint16 { return err.Sequence } +// BadId returns the 'BadValue' number if one exists for the BadMode error. If no bad value exists, 0 is returned. func (err ModeError) BadId() uint32 { return 0 } +// Error returns a rudimentary string representation of the BadMode error. + func (err ModeError) Error() string { fieldVals := make([]string, 0, 0) fieldVals = append(fieldVals, "NiceName: "+err.NiceName) @@ -4501,10 +4510,13 @@ func (err DeviceBusyError) SequenceId() uint16 { return err.Sequence } +// BadId returns the 'BadValue' number if one exists for the BadDeviceBusy error. If no bad value exists, 0 is returned. func (err DeviceBusyError) BadId() uint32 { return 0 } +// Error returns a rudimentary string representation of the BadDeviceBusy error. + func (err DeviceBusyError) Error() string { fieldVals := make([]string, 0, 0) fieldVals = append(fieldVals, "NiceName: "+err.NiceName) @@ -4544,10 +4556,13 @@ func (err ClassError) SequenceId() uint16 { return err.Sequence } +// BadId returns the 'BadValue' number if one exists for the BadClass error. If no bad value exists, 0 is returned. func (err ClassError) BadId() uint32 { return 0 } +// Error returns a rudimentary string representation of the BadClass error. + func (err ClassError) Error() string { fieldVals := make([]string, 0, 0) fieldVals = append(fieldVals, "NiceName: "+err.NiceName) -- cgit v1.2.3