ref(ai): add stub, fix includes, move aiwin_send_message location

This commit is contained in:
2026-04-30 17:41:36 +00:00
parent 1f1770bd58
commit 9c8ad57b59
8 changed files with 44 additions and 44 deletions

View File

@@ -28,3 +28,14 @@ aiwin_display_error(ProfAiWin* win, const char* error_msg)
(void)win;
(void)error_msg;
}
void
win_print_outgoing(ProfWin* window, const char* show_char, const char* const id, const char* const replace_id, const char* const message)
{
/* Stub: do nothing */
(void)window;
(void)show_char;
(void)id;
(void)replace_id;
(void)message;
}