Blob Blame History Raw
#ifndef _NT_ABI_H_
#define _NT_ABI_H_

#ifdef  _MIDIPIX_FREESTANDING

#include <psxtypes/psxtypes.h>

#else

#include <stdint.h>
#include <stddef.h>
#include <stdarg.h>
#include <sys/types.h>

#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 int            wchar32_t;

#endif

#endif