1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-01 03:22:48 -05:00

Implement "putty -cleanup"

[originally from svn r626]
This commit is contained in:
Simon Tatham
2000-09-25 15:47:57 +00:00
parent 0fb760b16d
commit f80f9d4299
4 changed files with 104 additions and 0 deletions

View File

@ -2,6 +2,10 @@
#define PUTTY_PUTTY_H
#define PUTTY_REG_POS "Software\\SimonTatham\\PuTTY"
#define PUTTY_REG_PARENT "Software\\SimonTatham"
#define PUTTY_REG_PARENT_CHILD "PuTTY"
#define PUTTY_REG_GPARENT "Software"
#define PUTTY_REG_GPARENT_CHILD "SimonTatham"
/*
* Global variables. Most modules declare these `extern', but
@ -254,6 +258,7 @@ void noise_get_heavy(void (*func) (void *, int));
void noise_get_light(void (*func) (void *, int));
void noise_ultralight(DWORD data);
void random_save_seed(void);
void random_destroy_seed(void);
/*
* Exports from windlg.c.
@ -266,6 +271,7 @@ void showeventlog (HWND);
void showabout (HWND);
void verify_ssh_host_key(char *host, char *keystr);
void get_sesslist(int allocate);
void registry_cleanup(void);
GLOBAL int nsessions;
GLOBAL char **sessions;