Sound4Calc/include/syscall.h

13 lines
330 B
C
Raw Permalink Normal View History

2016-05-14 22:19:51 +02:00
#ifndef _SYSCALL_H
#define _SYSCALL_H
int Keyboard_GetKey(int*column, int*row, int type_of_waiting, int timeout_period, int menu, unsigned short*keycode);
int Keyboard_GetPressedKey(short *matrixcode);
int Keyboard_IsKeyPressed(short *matrixcode);
int Keyboard_KeyDown(void);
int Keyboard_ClrBuffer(void);
#endif