cccapstone icon indicating copy to clipboard operation
cccapstone copied to clipboard

Windows specific SAL notation

Open TACIXAT opened this issue 10 years ago • 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.

TACIXAT avatar Jun 25 '15 22:06 TACIXAT