1
0
mirror of https://github.com/Ylianst/MeshAgent synced 2025-12-24 04:04:31 +00:00

Added unicode-key support for xorg (Linux/FreeBSD)

This commit is contained in:
Bryan Roe
2020-11-18 17:01:15 -08:00
parent 2fc2206eb9
commit 4ffe75c873
5 changed files with 105 additions and 8 deletions

View File

@@ -23,6 +23,8 @@ limitations under the License.
#include <string.h>
#include <stdio.h>
#include <unistd.h>
#include "microstack/ILibParsers.h"
typedef struct x11tst_struct
{
@@ -399,5 +401,6 @@ struct keymap_t {
extern void MouseAction(double absX, double absY, int button, short wheel, Display *display);
extern void KeyAction(unsigned char vk, int up, Display *display);
extern void KeyActionUnicode(uint16_t unicode, int up, Display *display);
#endif /* LINUX_EVENTS_H_ */