diff options
Diffstat (limited to 'nexgb/xfixes')
-rw-r--r-- | nexgb/xfixes/xfixes.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/nexgb/xfixes/xfixes.go b/nexgb/xfixes/xfixes.go index 7716d09..50bf40d 100644 --- a/nexgb/xfixes/xfixes.go +++ b/nexgb/xfixes/xfixes.go @@ -11,6 +11,11 @@ import ( "janouch.name/haven/nexgb/xproto" ) +const ( + MajorVersion = 5 + MinorVersion = 0 +) + // Init must be called before using the XFIXES extension. func Init(c *xgb.Conn) error { reply, err := xproto.QueryExtension(c, 6, "XFIXES").Reply() |