From: Stefan Reinauer Date: Thu, 4 Jun 2026 14:55:29 +0000 (-0700) Subject: clipboard: expose host text polling hook X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=4921cc7235f53118fe3126619f136b1466d95eef;p=francis%2Fwinuae.git clipboard: expose host text polling hook Declare the host-side text polling entry point in the shared header. This lets target backends report clipboard text changes without private header dependencies. --- diff --git a/include/clipboard.h b/include/clipboard.h index 9e6cb467..8e0eb0f4 100644 --- a/include/clipboard.h +++ b/include/clipboard.h @@ -12,5 +12,6 @@ extern void amiga_clipboard_task_start(TrapContext *ctx, uaecptr); extern void clipboard_disable(bool); extern void clipboard_vsync(void); extern void clipboard_unsafeperiod(void); +extern void clipboard_host_changed(void); #endif /* UAE_CLIPBOARD_H */