mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-02 03:52:49 -05:00
Add a "Config *" argument to term_init(), and use that instead of the global
cfg throughout the terminal emulator. Not tested in PuTTY and pterm, but they just pass in &cfg. [originally from svn r2248]
This commit is contained in:
2
putty.h
2
putty.h
@ -467,7 +467,7 @@ void registry_cleanup(void);
|
||||
* Exports from terminal.c.
|
||||
*/
|
||||
|
||||
Terminal *term_init(void *frontend);
|
||||
Terminal *term_init(Config *, void *);
|
||||
void term_size(Terminal *, int, int, int);
|
||||
void term_out(Terminal *);
|
||||
void term_paint(Terminal *, Context, int, int, int, int, int);
|
||||
|
Reference in New Issue
Block a user