summaryrefslogtreecommitdiffhomepage
path: root/include/ntapi/nt_abi.h
blob: 57dc8556ae874635b6f3987b6a6b15d0e1935af5 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#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