From b003e95b91d47e35efdf634111769d1c185f7cd2 Mon Sep 17 00:00:00 2001 From: midipix Date: Mon, 12 Dec 2016 00:35:21 -0500 Subject: api headers: added ntcon_{abi|compiler}.h for smooth foreign toolchain support. --- include/ntcon/ntcon_abi.h | 54 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 include/ntcon/ntcon_abi.h (limited to 'include/ntcon/ntcon_abi.h') diff --git a/include/ntcon/ntcon_abi.h b/include/ntcon/ntcon_abi.h new file mode 100644 index 0000000..63af119 --- /dev/null +++ b/include/ntcon/ntcon_abi.h @@ -0,0 +1,54 @@ +#ifndef _NTCON_ABI_H_ +#define _NTCON_ABI_H_ + +#ifdef _MIDIPIX_FREESTANDING + +#include + +#else + +#include +#include + +#ifndef __in +#define __in +#endif + +#ifndef __out +#define __out +#endif + +#ifndef __in_opt +#define __in_opt +#endif + +#ifndef __out_opt +#define __out_opt +#endif + +#ifndef __in_out +#define __in_out +#endif + +#ifndef __in_out_opt +#define __in_out_opt +#endif + +#ifndef __optional +#define __optional +#endif + +#ifndef __reserved +#define __reserved +#endif + +#ifndef __inline__ +#define __inline__ __inline +#endif + +typedef unsigned short wchar16_t; +typedef unsigned int wchar32_t; + +#endif + +#endif -- cgit v1.2.3