mirror of https://github.com/nirenjan/libx52.git
19 lines
386 B
C
19 lines
386 B
C
/*
|
|
* Saitek X52 Pro Character Map
|
|
*
|
|
* Copyright (C) 2015 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0
|
|
*/
|
|
|
|
#ifndef X52_CHAR_MAP_H
|
|
#define X52_CHAR_MAP_H
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
extern const uint16_t *root_table[256];
|
|
extern const uint8_t *sequence_table[];
|
|
|
|
#endif /* !defined X52_CHAR_MAP_H */
|