Skip to content
This repository has been archived by the owner on Apr 19, 2024. It is now read-only.

Commit

Permalink
A few small changes to make the PuTTY source base more usable as a
Browse files Browse the repository at this point in the history
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.


git-svn-id: svn://svn.tartarus.org/sgt/putty@6479 cda61777-01e9-0310-a592-d414129be87e
  • Loading branch information
simon committed Dec 9, 2005
1 parent 1f18258 commit 860a34f
Show file tree
Hide file tree
Showing 8 changed files with 54 additions and 10 deletions.
2 changes: 1 addition & 1 deletion mac/macterm.c
Expand Up @@ -1488,7 +1488,7 @@ void sys_cursor(void *frontend, int x, int y)
* may want to perform additional actions on any kind of bell (for
* example, taskbar flashing in Windows).
*/
void beep(void *frontend, int mode)
void do_beep(void *frontend, int mode)
{
if (mode != BELL_VISUAL)
SysBeep(30);
Expand Down
2 changes: 1 addition & 1 deletion macosx/osxwin.m
Expand Up @@ -939,7 +939,7 @@ void update_specials_menu(void *frontend)
* may want to perform additional actions on any kind of bell (for
* example, taskbar flashing in Windows).
*/
void beep(void *frontend, int mode)
void do_beep(void *frontend, int mode)
{
//SessionWindow *win = (SessionWindow *)frontend;
if (mode != BELL_VISUAL)
Expand Down
38 changes: 38 additions & 0 deletions noprint.c
@@ -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)
{
}
14 changes: 10 additions & 4 deletions notiming.c
@@ -1,9 +1,11 @@
/*
* notiming.c: stub version of schedule_timer().
* notiming.c: stub version of timing API.
*
* Used in key generation tools, which need the random number
* generator but don't want the hassle of calling noise_regular()
* at regular intervals - and don't _need_ it either, since they
* Used in any tool which needs a subsystem linked against the
* timing API but doesn't want to actually provide timing. For
* example, key generation tools need the random number generator,
* but they don't want the hassle of calling noise_regular() at
* regular intervals - and they don't _need_ it either, since they
* have their own rigorous and different means of noise collection.
*/

Expand All @@ -13,3 +15,7 @@ long schedule_timer(int ticks, timer_fn_t fn, void *ctx)
{
return 0;
}

void expire_timer_context(void *ctx)
{
}
2 changes: 1 addition & 1 deletion putty.h
Expand Up @@ -686,7 +686,7 @@ void modalfatalbox(char *, ...);
#pragma noreturn(fatalbox)
#pragma noreturn(modalfatalbox)
#endif
void beep(void *frontend, int);
void do_beep(void *frontend, int);
void begin_session(void *frontend);
void sys_cursor(void *frontend, int x, int y);
void request_paste(void *frontend);
Expand Down
2 changes: 1 addition & 1 deletion terminal.c
Expand Up @@ -2748,7 +2748,7 @@ static void term_out(Terminal *term)
* Perform an actual beep if we're not overloaded.
*/
if (!term->cfg.bellovl || !term->beep_overloaded) {
beep(term->frontend, term->cfg.beep);
do_beep(term->frontend, term->cfg.beep);

if (term->cfg.beep == BELL_VISUAL) {
term_schedule_vbell(term, FALSE, 0);
Expand Down
2 changes: 1 addition & 1 deletion unix/gtkwin.c
Expand Up @@ -1848,7 +1848,7 @@ void sys_cursor(void *frontend, int x, int y)
* may want to perform additional actions on any kind of bell (for
* example, taskbar flashing in Windows).
*/
void beep(void *frontend, int mode)
void do_beep(void *frontend, int mode)
{
if (mode != BELL_VISUAL)
gdk_beep();
Expand Down
2 changes: 1 addition & 1 deletion windows/window.c
Expand Up @@ -4777,7 +4777,7 @@ static void flash_window(int mode)
/*
* Beep.
*/
void beep(void *frontend, int mode)
void do_beep(void *frontend, int mode)
{
if (mode == BELL_DEFAULT) {
/*
Expand Down

0 comments on commit 860a34f

Please sign in to comment.