mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-02 03:52:49 -05:00
A few small changes to make the PuTTY source base more usable as a
basis for other terminal-involving applications: a stub implementation of the printing interface, an additional function in notiming.c, and also I've renamed the front-end function beep() to do_beep() so as not to clash with beep() in lib[n]curses. [originally from svn r6479]
This commit is contained in:
38
noprint.c
Normal file
38
noprint.c
Normal file
@ -0,0 +1,38 @@
|
||||
/*
|
||||
* Stub implementation of the printing interface for PuTTY, for the
|
||||
* benefit of non-printing terminal applications.
|
||||
*/
|
||||
|
||||
#include <assert.h>
|
||||
#include <stdio.h>
|
||||
#include "putty.h"
|
||||
|
||||
struct printer_job_tag {
|
||||
int dummy;
|
||||
};
|
||||
|
||||
printer_job *printer_start_job(char *printer)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
||||
void printer_job_data(printer_job *pj, void *data, int len)
|
||||
{
|
||||
}
|
||||
|
||||
void printer_finish_job(printer_job *pj)
|
||||
{
|
||||
}
|
||||
|
||||
printer_enum *printer_start_enum(int *nprinters_ptr)
|
||||
{
|
||||
*nprinters_ptr = 0;
|
||||
return NULL;
|
||||
}
|
||||
char *printer_get_name(printer_enum *pe, int i)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
void printer_finish_enum(printer_enum *pe)
|
||||
{
|
||||
}
|
Reference in New Issue
Block a user