File: noprint.c

package info (click to toggle)
putty 0.74-1%2Bdeb11u2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 13,020 kB
  • sloc: ansic: 114,140; python: 4,372; perl: 3,511; sh: 1,563; makefile: 167
file content (38 lines) | stat: -rw-r--r-- 625 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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, size_t 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)
{
}