refactor: remove guarded helper headers

This commit is contained in:
2026-08-12 16:45:27 +09:00
parent 4e8720a40d
commit 211a6917b2
17 changed files with 45 additions and 75 deletions

12
dat.h
View File

@@ -28,6 +28,7 @@ enum
Maxclients = 64,
Maxkouho = 32,
Maxdisp = 9,
Wlkeymax = 0x300,
Imgw = (Maxrunes + 3) * Fontsz,
Imgh = (Maxdisp + 1) * Fontsz,
@@ -43,6 +44,17 @@ struct Str
int n;
};
typedef struct Wlstate Wlstate;
struct Wlstate
{
uchar down[Wlkeymax];
u32int repeatkey;
uvlong repeatat;
int rate;
int delay;
int repeating;
};
typedef struct Emit Emit;
struct Emit
{