Read/Write mutex for Extensions map

This commit is contained in:
aarzilli
2016-03-01 15:41:38 +01:00
committed by Přemysl Janouch
parent baff8c1906
commit becaf43dcb
29 changed files with 2526 additions and 103 deletions

View File

@@ -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