summaryrefslogtreecommitdiffhomepage
path: root/include/ntcon/ntcon_abi.h
blob: 63af119d6e8765bca4f3337067ebdc487cdd080b (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
#ifndef _NTCON_ABI_H_
#define _NTCON_ABI_H_

#ifdef  _MIDIPIX_FREESTANDING

#include <psxtypes/psxtypes.h>

#else

#include <stdint.h>
#include <stddef.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 unsigned int   wchar32_t;

#endif

#endif