head	1.1;
access;
symbols;
locks; strict;
comment	@ * @;


1.1
date	2026.09.24.19.19.26;	author ktnb;	state Exp;
branches;
next	;
commitid	7mQz2Mv9t9PRoUWG;


desc
@@


1.1
log
@kitty: update to 0.49.1

Packaging Updates:
- requires graphics/shader-slang now

Upstream Updates:
- official support for custom shaders
- performance updates
- many improvements and bug fixes
- CVE 2026-80430, CVE 2026-95834, CVE 2026-80431, CVE 2026-95835,
  CVE 2026-95832
@
text
@/*
 * On linux use the linux codes, otherwise fudge them.
 */

#pragma once

#if defined(__has_include)
#  if __has_include(<linux/input-event-codes.h>)
#    include <linux/input-event-codes.h>
#  endif
#endif

#ifndef BTN_LEFT
#define BTN_LEFT        0x110
#endif

#ifndef BTN_RIGHT
#define BTN_RIGHT       0x111
#endif

#ifndef BTN_MIDDLE
#define BTN_MIDDLE      0x112
#endif

#ifndef BTN_SIDE
#define BTN_SIDE        0x113
#endif

#ifndef BTN_EXTRA
#define BTN_EXTRA       0x114
#endif

#ifndef BTN_FORWARD
#define BTN_FORWARD     0x115
#endif

#ifndef BTN_BACK
#define BTN_BACK        0x116
#endif

#ifndef BTN_TASK
#define BTN_TASK        0x117
#endif
@
