summaryrefslogtreecommitdiffhomepage
path: root/include/ntapi/nt_abi.h
blob: de991061df429b7a3de8de4f139937f420d1a996 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#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
#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