cccapstone
cccapstone copied to clipboard
c++ bindings for capstone disasembly framework (http://www.capstone-engine.org/ - https://github.com/aquynh/capstone)
Is this project going to be updated or be developed further?
I try to use this library; in long run, program memory usage becomes inadequately huge. I reviewed code and found following fragment: ``` __forceinline CsInsClass_t Instructions(__in size_t i) { return...
In order to compile under Clang and GCC with your bindings it is necessary to define `__forceinline`, `__in`, `__inout` and `__checkReturn`.
Is this code for the wrapper updated with the most recent release of capstone? Just thought I would ask first easier than just digging in and trying to find an...
Code uses __in __out __inout __forceinline... These are Windows specific. You can define most of them away: ``` #define __in #define __out #define __inout #define __in_opt #define __forceinline __attribute__((always_inline)) ```...