diff options
author | aarzilli <alessandro.arzilli@gmail.com> | 2016-03-01 15:41:38 +0100 |
---|---|---|
committer | Přemysl Janouch <p@janouch.name> | 2018-09-08 16:49:24 +0200 |
commit | becaf43dcb3e9832c3eb951ff9908ed697868152 (patch) | |
tree | f2a45ac253c5ec8265efa78f1d4a2c993153fe18 /nexgb/xproto/xproto.go | |
parent | baff8c19067489ea26bbb804ef693e966202b511 (diff) | |
download | haven-becaf43dcb3e9832c3eb951ff9908ed697868152.tar.gz haven-becaf43dcb3e9832c3eb951ff9908ed697868152.tar.xz haven-becaf43dcb3e9832c3eb951ff9908ed697868152.zip |
Read/Write mutex for Extensions map
Diffstat (limited to 'nexgb/xproto/xproto.go')
-rw-r--r-- | nexgb/xproto/xproto.go | 16 |
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 |