Finishing touches for 0.2.0

This commit is contained in:
Keith Bowes 2022-02-26 12:16:34 -05:00
parent 23287f482d
commit 03fbe71903
6 changed files with 66 additions and 43 deletions

View file

@ -3,6 +3,8 @@
#include <stdio.h>
#define MAX(a, b) ((a > b) ? (a) : (b))
#define MIN(a, b) ((a < b) ? (a) : (b))
#include <wlr/version.h>
#define WLR_CHECK_VERSION(major, minor, micro) (WLR_VERSION_NUM >= ((major << 16) | (minor << 8) | (micro)))