Unicodemap keycodes rename (#21092)
This commit is contained in:
parent
45c9bc4e55
commit
a4ed6ad0f5
55 changed files with 358 additions and 360 deletions
|
@ -216,7 +216,7 @@
|
|||
|
||||
#define UCM_NAME(name, code) UCM_ ## name, // UCM_LALP,
|
||||
#define UCM_ENTRY(name, code) [UCM_ ## name] = code, // [UCM_LALP] = 0x03B1,
|
||||
#define UCM_KEYCODE(name, code) name = X(UCM_ ## name), // LALP = X(UCM_LALP)
|
||||
#define UCM_KEYCODE(name, code) name = UM(UCM_ ## name), // LALP = UM(UCM_LALP)
|
||||
|
||||
#if defined(UNICODE_ENABLE)
|
||||
enum unicode_keycodes {
|
||||
|
@ -235,61 +235,61 @@ enum unicode_keycodes {
|
|||
#endif
|
||||
|
||||
|
||||
#define ALPHA XP(LALP, UALP)
|
||||
#define BETA XP(LBET, UBET)
|
||||
#define GAMMA XP(LGAM, UGAM)
|
||||
#define DELTA XP(LDEL, UDEL)
|
||||
#define EPSLN XP(LEPS, UEPS)
|
||||
#define ZETA XP(LZET, UZET)
|
||||
#define ETA XP(LETA, UETA)
|
||||
#define THETA XP(LTHE, UTHE)
|
||||
#define IOTA XP(LIOT, UIOT)
|
||||
#define KAPPA XP(LKAP, UKAP)
|
||||
#define LAMBD XP(LLAM, ULAM)
|
||||
#define GMU XP(LMU, UMU)
|
||||
#define NU XP(LNU, UNU)
|
||||
#define XI XP(LXI, UXI)
|
||||
#define OMCRN XP(LOMI, UOMI)
|
||||
#define PI XP(LPI, UPI)
|
||||
#define RHO XP(LRHO, URHO)
|
||||
#define SIGMA XP(LSIG, USIG)
|
||||
#define TAU XP(LTAU, UTAU)
|
||||
#define UPSLN XP(LUPS, UUPS)
|
||||
#define PHI XP(LPHI, UPHI)
|
||||
#define CHI XP(LCHI, UCHI)
|
||||
#define PSI XP(LPSI, UPSI)
|
||||
#define OMEGA XP(LOME, UOME)
|
||||
#define ALPHA UP(LALP, UALP)
|
||||
#define BETA UP(LBET, UBET)
|
||||
#define GAMMA UP(LGAM, UGAM)
|
||||
#define DELTA UP(LDEL, UDEL)
|
||||
#define EPSLN UP(LEPS, UEPS)
|
||||
#define ZETA UP(LZET, UZET)
|
||||
#define ETA UP(LETA, UETA)
|
||||
#define THETA UP(LTHE, UTHE)
|
||||
#define IOTA UP(LIOT, UIOT)
|
||||
#define KAPPA UP(LKAP, UKAP)
|
||||
#define LAMBD UP(LLAM, ULAM)
|
||||
#define GMU UP(LMU, UMU)
|
||||
#define NU UP(LNU, UNU)
|
||||
#define XI UP(LXI, UXI)
|
||||
#define OMCRN UP(LOMI, UOMI)
|
||||
#define PI UP(LPI, UPI)
|
||||
#define RHO UP(LRHO, URHO)
|
||||
#define SIGMA UP(LSIG, USIG)
|
||||
#define TAU UP(LTAU, UTAU)
|
||||
#define UPSLN UP(LUPS, UUPS)
|
||||
#define PHI UP(LPHI, UPHI)
|
||||
#define CHI UP(LCHI, UCHI)
|
||||
#define PSI UP(LPSI, UPSI)
|
||||
#define OMEGA UP(LOME, UOME)
|
||||
|
||||
#define AH XP(LAH, UAH)
|
||||
#define BE XP(LBE, UBE)
|
||||
#define VE XP(LVE, UVE)
|
||||
#define GHE XP(LGHE, UGHE)
|
||||
#define DE XP(LDE, UDE)
|
||||
#define IE XP(LIE, UIE)
|
||||
#define IO XP(LIO, UIO)
|
||||
#define ZHE XP(LZHE, UZHE)
|
||||
#define ZE XP(LZE, UZE)
|
||||
#define IH XP(LIH, UIH)
|
||||
#define SIH XP(LSIH, USIH)
|
||||
#define KA XP(LKA, UKA)
|
||||
#define EL XP(LEL, UEL)
|
||||
#define EM XP(LEM, UEM)
|
||||
#define EN XP(LEN, UEN)
|
||||
#define OH XP(LOH, UOH)
|
||||
#define PE XP(LPE, UPE)
|
||||
#define ER XP(LER, UER)
|
||||
#define ES XP(LES, UES)
|
||||
#define TE XP(LTE, UTE)
|
||||
#define UU XP(LUU, UUU)
|
||||
#define EF XP(LEF, UEF)
|
||||
#define HA XP(LHA, UHA)
|
||||
#define TSE XP(LTSE, UTSE)
|
||||
#define CHE XP(LCHE, UCHE)
|
||||
#define SHA XP(LSHA, USHA)
|
||||
#define SCHA XP(LSCHA, USCHA)
|
||||
#define HARD XP(LHARD, UHARD)
|
||||
#define YERU XP(LYERU, UYERU)
|
||||
#define SOFT XP(LSOFT, USOFT)
|
||||
#define EH XP(LEH, UEH)
|
||||
#define YU XP(LYU, UYU)
|
||||
#define YA XP(LYA, UYA)
|
||||
#define AH UP(LAH, UAH)
|
||||
#define BE UP(LBE, UBE)
|
||||
#define VE UP(LVE, UVE)
|
||||
#define GHE UP(LGHE, UGHE)
|
||||
#define DE UP(LDE, UDE)
|
||||
#define IE UP(LIE, UIE)
|
||||
#define IO UP(LIO, UIO)
|
||||
#define ZHE UP(LZHE, UZHE)
|
||||
#define ZE UP(LZE, UZE)
|
||||
#define IH UP(LIH, UIH)
|
||||
#define SIH UP(LSIH, USIH)
|
||||
#define KA UP(LKA, UKA)
|
||||
#define EL UP(LEL, UEL)
|
||||
#define EM UP(LEM, UEM)
|
||||
#define EN UP(LEN, UEN)
|
||||
#define OH UP(LOH, UOH)
|
||||
#define PE UP(LPE, UPE)
|
||||
#define ER UP(LER, UER)
|
||||
#define ES UP(LES, UES)
|
||||
#define TE UP(LTE, UTE)
|
||||
#define UU UP(LUU, UUU)
|
||||
#define EF UP(LEF, UEF)
|
||||
#define HA UP(LHA, UHA)
|
||||
#define TSE UP(LTSE, UTSE)
|
||||
#define CHE UP(LCHE, UCHE)
|
||||
#define SHA UP(LSHA, USHA)
|
||||
#define SCHA UP(LSCHA, USCHA)
|
||||
#define HARD UP(LHARD, UHARD)
|
||||
#define YERU UP(LYERU, UYERU)
|
||||
#define SOFT UP(LSOFT, USOFT)
|
||||
#define EH UP(LEH, UEH)
|
||||
#define YU UP(LYU, UYU)
|
||||
#define YA UP(LYA, UYA)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue