SVNからのミラー

This commit is contained in:
2026-01-06 21:47:05 +09:00
commit 7603358afe
20 changed files with 816 additions and 0 deletions

12
src/control.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef CONTROL_H
#define CONTROL_H
#include "program.h"
void control_expose(
Display *display, Window window, GC gc, XEvent *event, char *input, int *sel);
void control_keypress(
Display *display, Window window, GC gc, XEvent *event, char *input, int *sel);
void control_buttonpress(XEvent *event, Program *programs, int item_height);
#endif