aboutsummaryrefslogtreecommitdiff
path: root/nexgb/xproto
diff options
context:
space:
mode:
authoraarzilli <alessandro.arzilli@gmail.com>2016-03-01 15:41:38 +0100
committerPřemysl Janouch <p@janouch.name>2018-09-08 16:49:24 +0200
commitbecaf43dcb3e9832c3eb951ff9908ed697868152 (patch)
treef2a45ac253c5ec8265efa78f1d4a2c993153fe18 /nexgb/xproto
parentbaff8c19067489ea26bbb804ef693e966202b511 (diff)
downloadhaven-becaf43dcb3e9832c3eb951ff9908ed697868152.tar.gz
haven-becaf43dcb3e9832c3eb951ff9908ed697868152.tar.xz
haven-becaf43dcb3e9832c3eb951ff9908ed697868152.zip
Read/Write mutex for Extensions map
Diffstat (limited to 'nexgb/xproto')
-rw-r--r--nexgb/xproto/xproto.go16
1 files changed, 8 insertions, 8 deletions
diff --git a/nexgb/xproto/xproto.go b/nexgb/xproto/xproto.go
index 728f85f..716c49b 100644
--- a/nexgb/xproto/xproto.go
+++ b/nexgb/xproto/xproto.go
@@ -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
@@ -4266,10 +4270,6 @@ func init() {
}
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
@@ -6422,6 +6418,10 @@ func init() {
}
const (
+ WindowNone = 0
+)
+
+const (
WindowClassCopyFromParent = 0
WindowClassInputOutput = 1
WindowClassInputOnly = 2