summaryrefslogtreecommitdiff
path: root/nice/nice.h
diff options
context:
space:
mode:
authorPhilippe Normand <philn@igalia.com>2022-05-05 13:30:54 +0100
committerPhilippe Normand <philn@igalia.com>2022-05-05 17:25:10 +0100
commit22e5f5e5b0558a20d1740542718ae790541ae63c (patch)
tree02e836b924ecd7ed1da6cadb5603a7cd06a3a7c9 /nice/nice.h
parent2eb9633ca96b5d453d842bc95333e36869fb3a7a (diff)
downloadlibnice-22e5f5e5b0558a20d1740542718ae790541ae63c.tar.gz
Add NICE_CHECK_VERSION macro
Diffstat (limited to 'nice/nice.h')
-rw-r--r--nice/nice.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/nice/nice.h b/nice/nice.h
index 5587ec4..bb63129 100644
--- a/nice/nice.h
+++ b/nice/nice.h
@@ -39,6 +39,14 @@
#ifndef _NICE_H
#define _NICE_H
+#define NICE_CHECK_VERSION(major, minor, micro) \
+ (NICE_VERSION_MAJOR > (major) || \
+ (NICE_VERSION_MAJOR == (major) && NICE_VERSION_MINOR > (minor)) || \
+ (NICE_VERSION_MAJOR == (major) && NICE_VERSION_MINOR == (minor) && \
+ NICE_VERSION_MICRO >= (micro)) || \
+ (NICE_VERSION_MAJOR == (major) && NICE_VERSION_MINOR == (minor) && \
+ NICE_VERSION_MICRO + 1 == (micro) && NICE_VERSION_NANO > 0))
+
#include "agent.h"
#include "interfaces.h"