notaz.gp2x.de
/
picodrive.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
bugfix
[picodrive.git]
/
platform
/
win32
/
in_vk.h
1
#ifdef IN_VK
2
3
void in_vk_init(void *vdrv);
4
int in_vk_update(void *drv_data, const int *binds, int *result);
5
6
void in_vk_keydown(int kc);
7
void in_vk_keyup(int kc);
8
9
extern int in_vk_add_pl12;
10
11
#else
12
13
#define in_vk_init(x)
14
#define in_vk_update(a,b,c) 0
15
16
#endif