We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d70320 commit 6fe588bCopy full SHA for 6fe588b
include/quo-vadis.h
@@ -30,6 +30,14 @@ extern "C" {
30
/** Convenience definition. */
31
#define QUO_VADIS 1
32
33
+/**
34
+ * This number is updated to (X<<16)+(Y<<8)+Z
35
+ * when a release X.Y.Z modifies the API.
36
+ *
37
+ * In python: print(f'{(X<<16)+(Y<<8)+Z:#010x}')
38
+ */
39
+#define QUO_VADIS_API_VERSION 0x00000001
40
+
41
/** Opaque quo-vadis context. */
42
struct qv_context_s;
43
typedef struct qv_context_s qv_context_t;
0 commit comments