aboutsummaryrefslogtreecommitdiff
path: root/src/edbox.h
diff options
context:
space:
mode:
authorB. Watson <urchlay@slackware.uk>2026-04-13 01:38:17 -0400
committerB. Watson <urchlay@slackware.uk>2026-04-13 01:38:51 -0400
commit172db1bcaa88b51326e9b788022985c97276dbfb (patch)
tree40455c46fe46553d94be0865ab93c05b4da3fa8f /src/edbox.h
parent7a0ae36af58e684b4108f817a15000d09adf1722 (diff)
downloadfujinet-chat-172db1bcaa88b51326e9b788022985c97276dbfb.tar.gz
Get rid of edbox_callback() abstraction (never used it anyway). 7696 bytes free.
Diffstat (limited to 'src/edbox.h')
-rw-r--r--src/edbox.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/edbox.h b/src/edbox.h
index e4069a0..99e64da 100644
--- a/src/edbox.h
+++ b/src/edbox.h
@@ -24,12 +24,9 @@ void edbox_hide(void);
void edbox_putc(char c);
/* pass a keystroke, insert its character into the edit box. if Return
- is pressed, edbox_callback gets called (if it's set!) */
+ is pressed, cmd_execute() gets called. */
void edbox_keystroke(char c);
-/* called when the user presses Return */
-extern void (*edbox_callback)(void);
-
/* set edit box contents (clears out whatever was there) */
void __fastcall__ edbox_set(char *contents);