RetroArch
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
+
Variables
a
b
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
+
Typedefs
a
b
c
d
e
f
g
i
l
m
o
p
q
r
s
t
u
v
x
+
Enumerations
a
b
c
d
e
f
g
i
k
l
m
o
p
q
r
s
t
v
+
Enumerator
a
b
c
d
e
f
g
i
k
l
m
o
p
r
s
t
u
x
+
Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
~
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
m
n
o
p
r
s
t
u
v
Enumerations
+
Enumerator
a
b
c
d
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
+
Properties
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
y
Related Functions
+
Files
File List
+
File Members
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Á
á
é
Ά
Ή
Α
Δ
Ε
Κ
Ο
Π
Σ
Ω
α
ε
θ
π
В
И
К
О
П
У
а
в
д
з
и
к
о
п
с
ф
ч
я
オ
キ
ス
チ
デ
レ
上
下
中
右
启
啟
回
実
屏
左
已
巻
支
显
次
聲
过
鍵
需
顯
게
구
너
넷
도
동
되
레
리
버
변
비
사
성
쉐
시
실
애
연
오
이
입
잘
조
죄
중
지
참
코
키
필
화
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Á
á
Ά
Ή
Α
Ε
Κ
Ο
К
П
а
д
з
к
オ
ス
デ
レ
上
下
中
右
启
啟
回
屏
左
巻
支
显
次
聲
顯
너
넷
동
레
버
비
시
잘
중
지
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
é
Δ
Ε
Κ
Π
Σ
Ω
α
ε
θ
π
В
И
К
О
У
в
д
з
и
к
о
п
с
ф
ч
я
キ
チ
実
已
过
鍵
需
게
구
도
되
리
변
사
성
쉐
시
실
애
연
오
이
입
조
죄
참
코
키
필
화
+
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Enumerations
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
z
+
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
wiiu
include
wiiu
nsyskbd.h
Go to the documentation of this file.
1
#pragma once
2
3
#include <
wiiu/types.h
>
4
5
#ifdef __cplusplus
6
extern
"C"
{
7
#endif
8
9
typedef
enum
_KEYState
10
{
11
KBD_WIIU_DOWN
= 0x01,
12
KBD_WIIU_REPEAT
= 0x02,
13
KBD_WIIU_NULL
= 0x00
14
}
KEYState
;
15
16
typedef
enum
_KBDModifier
17
{
18
KBD_WIIU_CTRL
= 0x0001,
19
KBD_WIIU_SHIFT
= 0x0002,
20
KBD_WIIU_ALT
= 0x0004,
21
KBD_WIIU_NUM_LOCK
= 0x0100,
22
KBD_WIIU_CAPS_LOCK
= 0x0200,
23
KBD_WIIU_SCROLL_LOCK
= 0x0400,
24
}
KBDModifier
;
25
26
typedef
struct
_KBDKeyEvent
27
{
28
unsigned
char
channel
;
29
unsigned
char
scancode
;
/* scancode */
30
KEYState
state
;
/* when held, value is 0x03, which is KBD_DOWN & KBD_REPEAT */
31
KBDModifier
modifier
;
/* modifier state */
32
unsigned
short
UTF16
;
/* unicode, if any */
33
}
KBDKeyEvent
;
34
35
char
KBDSetup
(
void
*connection_callback,
void
*disconnection_callback,
void
*key_callback);
36
char
KBDTeardown
();
37
38
#ifdef __cplusplus
39
}
40
#endif
KBD_WIIU_DOWN
Definition:
nsyskbd.h:11
KBDKeyEvent
struct _KBDKeyEvent KBDKeyEvent
KBD_WIIU_REPEAT
Definition:
nsyskbd.h:12
KBDSetup
char KBDSetup(void *connection_callback, void *disconnection_callback, void *key_callback)
KEYState
enum _KEYState KEYState
_KBDModifier
_KBDModifier
Definition:
nsyskbd.h:16
_KBDKeyEvent::channel
unsigned char channel
Definition:
nsyskbd.h:28
_KBDKeyEvent::UTF16
unsigned short UTF16
Definition:
nsyskbd.h:32
_KBDKeyEvent
Definition:
nsyskbd.h:26
_KBDKeyEvent::scancode
unsigned char scancode
Definition:
nsyskbd.h:29
KBD_WIIU_NUM_LOCK
Definition:
nsyskbd.h:21
types.h
_KBDKeyEvent::modifier
KBDModifier modifier
Definition:
nsyskbd.h:31
KBD_WIIU_SCROLL_LOCK
Definition:
nsyskbd.h:23
KBD_WIIU_CTRL
Definition:
nsyskbd.h:18
KBD_WIIU_ALT
Definition:
nsyskbd.h:20
KBD_WIIU_SHIFT
Definition:
nsyskbd.h:19
_KBDKeyEvent::state
KEYState state
Definition:
nsyskbd.h:30
KBD_WIIU_CAPS_LOCK
Definition:
nsyskbd.h:22
KBDTeardown
char KBDTeardown()
KBD_WIIU_NULL
Definition:
nsyskbd.h:13
_KEYState
_KEYState
Definition:
nsyskbd.h:9
KBDModifier
enum _KBDModifier KBDModifier
Generated by
1.8.15