1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-02 03:52:49 -05:00

Enable copying the Event Log

[originally from svn r619]
This commit is contained in:
Simon Tatham
2000-09-22 14:46:26 +00:00
parent ddbc120725
commit cbdd9b3ac5
5 changed files with 58 additions and 11 deletions

13
scp.c
View File

@ -74,14 +74,13 @@ static void send_str_msg(unsigned int msg_id, char *str);
static void gui_update_stats(char *name, unsigned long size, int percentage, time_t elapsed);
/*
* These functions are needed to link with ssh.c, but never get called.
* These functions are needed to link with other modules, but
* (should) never get called.
*/
void term_out(void)
{
abort();
}
void begin_session(void) {
}
void term_out(void) { abort(); }
void begin_session(void) { }
void write_clip (void *data, int len) { }
void term_deselect(void) { }
/* GUI Adaptation - Sept 2000 */
void send_msg(HWND h, UINT message, WPARAM wParam)