mirror of
https://github.com/Yours3lf/rpi-vk-driver.git
synced 2025-01-20 12:52:15 +01:00
15 lines
170 B
C
15 lines
170 B
C
|
#pragma once
|
||
|
|
||
|
#if defined (__cplusplus)
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
void initInputHandler();
|
||
|
void handleInput();
|
||
|
void uninitInputHandler();
|
||
|
|
||
|
#if defined (__cplusplus)
|
||
|
}
|
||
|
#endif
|
||
|
|