no-term.c 323 B

1234567891011121314151617
  1. /*
  2. * Stubs of functions in terminal.c, for use in programs that don't
  3. * have a terminal.
  4. */
  5. #include "putty.h"
  6. #include "terminal.h"
  7. void term_nopaste(Terminal *term)
  8. {
  9. }
  10. SeatPromptResult term_get_userpass_input(Terminal *term, prompts_t *p)
  11. {
  12. return SPR_SW_ABORT("No terminal to send interactive prompts to");
  13. }