mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-26 00:55:59 +00:00
17 lines
312 B
C
17 lines
312 B
C
#ifndef CS_VERSION_H
|
|
#define CS_VERSION_H
|
|
|
|
#include <capstone/capstone.h>
|
|
|
|
#if CS_API_MAJOR == 5
|
|
#define CAPSTONE_VERSION_STRING "v5"
|
|
#elif CS_API_MAJOR == 4
|
|
#define CAPSTONE_VERSION_STRING "v4"
|
|
#elif CS_API_MAJOR == 3
|
|
#define CAPSTONE_VERSION_STRING "v3"
|
|
#else
|
|
#define CAPSTONE_VERSION_STRING ""
|
|
#endif
|
|
|
|
#endif
|