mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-10 01:48:00 +00:00
d13547d504
While I'm in the mood for cleaning up the top-level directory here: all the 'nostuff.c' files have moved into a new 'stubs' directory, and I broke up be_misc.c into smaller modules that can live in 'utils'.
17 lines
253 B
C
17 lines
253 B
C
/*
|
|
* Stubs of functions in terminal.c, for use in programs that don't
|
|
* have a terminal.
|
|
*/
|
|
|
|
#include "putty.h"
|
|
#include "terminal.h"
|
|
|
|
void term_nopaste(Terminal *term)
|
|
{
|
|
}
|
|
|
|
int term_get_userpass_input(Terminal *term, prompts_t *p)
|
|
{
|
|
return 0;
|
|
}
|