mirror of
https://github.com/RaySollium99/libpicofe.git
synced 2025-09-05 14:57:46 -04:00

git-svn-id: file:///home/notaz/opt/svn/PicoDrive/platform@804 be3aeb3a-fb24-0410-a615-afba39da0efa
16 lines
260 B
C
16 lines
260 B
C
#ifdef IN_VK
|
|
|
|
void in_vk_init(void *vdrv);
|
|
int in_vk_update(void *drv_data, const int *binds, int *result);
|
|
|
|
void in_vk_keydown(int kc);
|
|
void in_vk_keyup(int kc);
|
|
|
|
extern int in_vk_add_pl12;
|
|
|
|
#else
|
|
|
|
#define in_vk_init(x)
|
|
#define in_vk_update(a,b,c) 0
|
|
|
|
#endif
|