mirror of
https://github.com/wizbright/waybox.git
synced 2026-02-22 01:40:37 -05:00
Finishing touches for 0.2.0
This commit is contained in:
parent
23287f482d
commit
03fbe71903
6 changed files with 66 additions and 43 deletions
|
|
@ -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)))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue