Files
2026-03-05 13:44:23 +01:00

13 lines
279 B
C

#ifndef __KEYCODE_H
#define __KEYCODE_H
const int LeftTop = 201;
const int RightTop = 187;
const int RightBottom = 188;
const int LeftBottom = 200;
const int HLine = 205;
const int VLine = 186;
const int ESC = 27;
const int ENTER = 13;
const int BACK = 8;
#endif