From 9e3f4e60fc8ce5a3604b4104b568c2186b3e428c Mon Sep 17 00:00:00 2001 From: midipix Date: Sun, 11 Dec 2016 21:37:13 -0500 Subject: api headers: added nt_abi.h, supporting visual studio and hosted environment. --- include/ntapi/nt_abi.h | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 include/ntapi/nt_abi.h (limited to 'include/ntapi/nt_abi.h') diff --git a/include/ntapi/nt_abi.h b/include/ntapi/nt_abi.h new file mode 100644 index 0000000..de99106 --- /dev/null +++ b/include/ntapi/nt_abi.h @@ -0,0 +1,31 @@ +#ifndef _NT_ABI_H_ +#define _NT_ABI_H_ + +#ifdef _MIDIPIX_FREESTANDING + +#include + +#else + +#include +#include +#include +#include + +#ifndef __in +#define __in +#define __out +#define __in_opt +#define __out_opt +#define __in_out +#define __in_out_opt +#define __optional +#define __reserved +#endif + +typedef unsigned short wchar16_t; +typedef unsigned int wchar32_t; + +#endif + +#endif -- cgit v1.2.3