Read/Write mutex for Extensions map
This commit is contained in:
@@ -4227,6 +4227,10 @@ func NewPixmapId(c *xgb.Conn) (Pixmap, error) {
|
||||
return Pixmap(id), nil
|
||||
}
|
||||
|
||||
const (
|
||||
PixmapNone = 0
|
||||
)
|
||||
|
||||
// BadPixmap is the error number for a BadPixmap.
|
||||
const BadPixmap = 4
|
||||
|
||||
@@ -4265,10 +4269,6 @@ func init() {
|
||||
xgb.NewErrorFuncs[4] = PixmapErrorNew
|
||||
}
|
||||
|
||||
const (
|
||||
PixmapNone = 0
|
||||
)
|
||||
|
||||
const (
|
||||
PlaceOnTop = 0
|
||||
PlaceOnBottom = 1
|
||||
@@ -6379,10 +6379,6 @@ func NewWindowId(c *xgb.Conn) (Window, error) {
|
||||
return Window(id), nil
|
||||
}
|
||||
|
||||
const (
|
||||
WindowNone = 0
|
||||
)
|
||||
|
||||
// BadWindow is the error number for a BadWindow.
|
||||
const BadWindow = 3
|
||||
|
||||
@@ -6421,6 +6417,10 @@ func init() {
|
||||
xgb.NewErrorFuncs[3] = WindowErrorNew
|
||||
}
|
||||
|
||||
const (
|
||||
WindowNone = 0
|
||||
)
|
||||
|
||||
const (
|
||||
WindowClassCopyFromParent = 0
|
||||
WindowClassInputOutput = 1
|
||||
|
||||
Reference in New Issue
Block a user