Update to latest xproto XML.
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
package xcmisc
|
||||
|
||||
/*
|
||||
This file was generated by xc_misc.xml on Jun 5 2012 12:11:59am EDT.
|
||||
This file was generated by xc_misc.xml on Aug 11 2013 8:39:43pm EDT.
|
||||
This file is automatically generated. Edit at your peril!
|
||||
*/
|
||||
|
||||
@@ -40,29 +40,29 @@ func init() {
|
||||
xgb.NewExtErrorFuncs["XC-MISC"] = make(map[int]xgb.NewErrorFun)
|
||||
}
|
||||
|
||||
// Skipping definition for base type 'Int8'
|
||||
// Skipping definition for base type 'Bool'
|
||||
|
||||
// Skipping definition for base type 'Card16'
|
||||
// Skipping definition for base type 'Byte'
|
||||
|
||||
// Skipping definition for base type 'Card8'
|
||||
|
||||
// Skipping definition for base type 'Char'
|
||||
|
||||
// Skipping definition for base type 'Card32'
|
||||
// Skipping definition for base type 'Void'
|
||||
|
||||
// Skipping definition for base type 'Double'
|
||||
|
||||
// Skipping definition for base type 'Bool'
|
||||
|
||||
// Skipping definition for base type 'Float'
|
||||
|
||||
// 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 'Int8'
|
||||
|
||||
// Skipping definition for base type 'Byte'
|
||||
// Skipping definition for base type 'Card16'
|
||||
|
||||
// Skipping definition for base type 'Card32'
|
||||
|
||||
// GetVersionCookie is a cookie used only for GetVersion requests.
|
||||
type GetVersionCookie struct {
|
||||
@@ -159,95 +159,6 @@ func getVersionRequest(c *xgb.Conn, ClientMajorVersion uint16, ClientMinorVersio
|
||||
return buf
|
||||
}
|
||||
|
||||
// GetXIDRangeCookie is a cookie used only for GetXIDRange requests.
|
||||
type GetXIDRangeCookie struct {
|
||||
*xgb.Cookie
|
||||
}
|
||||
|
||||
// GetXIDRange sends a checked request.
|
||||
// If an error occurs, it will be returned with the reply by calling GetXIDRangeCookie.Reply()
|
||||
func GetXIDRange(c *xgb.Conn) GetXIDRangeCookie {
|
||||
if _, ok := c.Extensions["XC-MISC"]; !ok {
|
||||
panic("Cannot issue request 'GetXIDRange' using the uninitialized extension 'XC-MISC'. xcmisc.Init(connObj) must be called first.")
|
||||
}
|
||||
cookie := c.NewCookie(true, true)
|
||||
c.NewRequest(getXIDRangeRequest(c), cookie)
|
||||
return GetXIDRangeCookie{cookie}
|
||||
}
|
||||
|
||||
// GetXIDRangeUnchecked sends an unchecked request.
|
||||
// If an error occurs, it can only be retrieved using xgb.WaitForEvent or xgb.PollForEvent.
|
||||
func GetXIDRangeUnchecked(c *xgb.Conn) GetXIDRangeCookie {
|
||||
if _, ok := c.Extensions["XC-MISC"]; !ok {
|
||||
panic("Cannot issue request 'GetXIDRange' using the uninitialized extension 'XC-MISC'. xcmisc.Init(connObj) must be called first.")
|
||||
}
|
||||
cookie := c.NewCookie(false, true)
|
||||
c.NewRequest(getXIDRangeRequest(c), cookie)
|
||||
return GetXIDRangeCookie{cookie}
|
||||
}
|
||||
|
||||
// GetXIDRangeReply represents the data returned from a GetXIDRange request.
|
||||
type GetXIDRangeReply struct {
|
||||
Sequence uint16 // sequence number of the request for this reply
|
||||
Length uint32 // number of bytes in this reply
|
||||
// padding: 1 bytes
|
||||
StartId uint32
|
||||
Count uint32
|
||||
}
|
||||
|
||||
// Reply blocks and returns the reply data for a GetXIDRange request.
|
||||
func (cook GetXIDRangeCookie) Reply() (*GetXIDRangeReply, error) {
|
||||
buf, err := cook.Cookie.Reply()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if buf == nil {
|
||||
return nil, nil
|
||||
}
|
||||
return getXIDRangeReply(buf), nil
|
||||
}
|
||||
|
||||
// getXIDRangeReply reads a byte slice into a GetXIDRangeReply value.
|
||||
func getXIDRangeReply(buf []byte) *GetXIDRangeReply {
|
||||
v := new(GetXIDRangeReply)
|
||||
b := 1 // skip reply determinant
|
||||
|
||||
b += 1 // padding
|
||||
|
||||
v.Sequence = xgb.Get16(buf[b:])
|
||||
b += 2
|
||||
|
||||
v.Length = xgb.Get32(buf[b:]) // 4-byte units
|
||||
b += 4
|
||||
|
||||
v.StartId = xgb.Get32(buf[b:])
|
||||
b += 4
|
||||
|
||||
v.Count = xgb.Get32(buf[b:])
|
||||
b += 4
|
||||
|
||||
return v
|
||||
}
|
||||
|
||||
// Write request to wire for GetXIDRange
|
||||
// getXIDRangeRequest writes a GetXIDRange request to a byte slice.
|
||||
func getXIDRangeRequest(c *xgb.Conn) []byte {
|
||||
size := 4
|
||||
b := 0
|
||||
buf := make([]byte, size)
|
||||
|
||||
buf[b] = c.Extensions["XC-MISC"]
|
||||
b += 1
|
||||
|
||||
buf[b] = 1 // request opcode
|
||||
b += 1
|
||||
|
||||
xgb.Put16(buf[b:], uint16(size/4)) // write request size in 4-byte units
|
||||
b += 2
|
||||
|
||||
return buf
|
||||
}
|
||||
|
||||
// GetXIDListCookie is a cookie used only for GetXIDList requests.
|
||||
type GetXIDListCookie struct {
|
||||
*xgb.Cookie
|
||||
@@ -346,3 +257,92 @@ func getXIDListRequest(c *xgb.Conn, Count uint32) []byte {
|
||||
|
||||
return buf
|
||||
}
|
||||
|
||||
// GetXIDRangeCookie is a cookie used only for GetXIDRange requests.
|
||||
type GetXIDRangeCookie struct {
|
||||
*xgb.Cookie
|
||||
}
|
||||
|
||||
// GetXIDRange sends a checked request.
|
||||
// If an error occurs, it will be returned with the reply by calling GetXIDRangeCookie.Reply()
|
||||
func GetXIDRange(c *xgb.Conn) GetXIDRangeCookie {
|
||||
if _, ok := c.Extensions["XC-MISC"]; !ok {
|
||||
panic("Cannot issue request 'GetXIDRange' using the uninitialized extension 'XC-MISC'. xcmisc.Init(connObj) must be called first.")
|
||||
}
|
||||
cookie := c.NewCookie(true, true)
|
||||
c.NewRequest(getXIDRangeRequest(c), cookie)
|
||||
return GetXIDRangeCookie{cookie}
|
||||
}
|
||||
|
||||
// GetXIDRangeUnchecked sends an unchecked request.
|
||||
// If an error occurs, it can only be retrieved using xgb.WaitForEvent or xgb.PollForEvent.
|
||||
func GetXIDRangeUnchecked(c *xgb.Conn) GetXIDRangeCookie {
|
||||
if _, ok := c.Extensions["XC-MISC"]; !ok {
|
||||
panic("Cannot issue request 'GetXIDRange' using the uninitialized extension 'XC-MISC'. xcmisc.Init(connObj) must be called first.")
|
||||
}
|
||||
cookie := c.NewCookie(false, true)
|
||||
c.NewRequest(getXIDRangeRequest(c), cookie)
|
||||
return GetXIDRangeCookie{cookie}
|
||||
}
|
||||
|
||||
// GetXIDRangeReply represents the data returned from a GetXIDRange request.
|
||||
type GetXIDRangeReply struct {
|
||||
Sequence uint16 // sequence number of the request for this reply
|
||||
Length uint32 // number of bytes in this reply
|
||||
// padding: 1 bytes
|
||||
StartId uint32
|
||||
Count uint32
|
||||
}
|
||||
|
||||
// Reply blocks and returns the reply data for a GetXIDRange request.
|
||||
func (cook GetXIDRangeCookie) Reply() (*GetXIDRangeReply, error) {
|
||||
buf, err := cook.Cookie.Reply()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if buf == nil {
|
||||
return nil, nil
|
||||
}
|
||||
return getXIDRangeReply(buf), nil
|
||||
}
|
||||
|
||||
// getXIDRangeReply reads a byte slice into a GetXIDRangeReply value.
|
||||
func getXIDRangeReply(buf []byte) *GetXIDRangeReply {
|
||||
v := new(GetXIDRangeReply)
|
||||
b := 1 // skip reply determinant
|
||||
|
||||
b += 1 // padding
|
||||
|
||||
v.Sequence = xgb.Get16(buf[b:])
|
||||
b += 2
|
||||
|
||||
v.Length = xgb.Get32(buf[b:]) // 4-byte units
|
||||
b += 4
|
||||
|
||||
v.StartId = xgb.Get32(buf[b:])
|
||||
b += 4
|
||||
|
||||
v.Count = xgb.Get32(buf[b:])
|
||||
b += 4
|
||||
|
||||
return v
|
||||
}
|
||||
|
||||
// Write request to wire for GetXIDRange
|
||||
// getXIDRangeRequest writes a GetXIDRange request to a byte slice.
|
||||
func getXIDRangeRequest(c *xgb.Conn) []byte {
|
||||
size := 4
|
||||
b := 0
|
||||
buf := make([]byte, size)
|
||||
|
||||
buf[b] = c.Extensions["XC-MISC"]
|
||||
b += 1
|
||||
|
||||
buf[b] = 1 // request opcode
|
||||
b += 1
|
||||
|
||||
xgb.Put16(buf[b:], uint16(size/4)) // write request size in 4-byte units
|
||||
b += 2
|
||||
|
||||
return buf
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user