zer0mem/cccapstone

Windows specific SAL notation

Opened this issue · 0 comments

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))

but it would be nice if the code was Linux ready as well.