ffi_version added

This commit is contained in:
2026-05-04 13:11:50 +02:00
parent 9a0ef7d76e
commit 4134cf0549
8 changed files with 25 additions and 5 deletions
+10
View File
@@ -0,0 +1,10 @@
#ifndef __FFI_VERSION__
#define __FFI_VERSION__
#define VERSION_MAJOR 1
#define VERSION_MINOR 0
#define VERSION_PATCH 0
#define ffi_version() ((VERSION_MAJOR << 16) + (VERSION_MINOR << 8) + VERSION_PATCH)
#endif