mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-06-30 19:12:48 -05:00
Make 'LogContext' a typedef visible throughout the code.
Same principle again - the more of these structures have globally visible tags (even if the structure contents are still opaque in most places), the fewer of them I can mistake for each other.
This commit is contained in:
@ -50,7 +50,7 @@ static int null_exitcode(void *);
|
||||
static int null_sendok(void *);
|
||||
static int null_ldisc(void *, int);
|
||||
static void null_provide_ldisc(void *, Ldisc *);
|
||||
static void null_provide_logctx(void *, void *);
|
||||
static void null_provide_logctx(void *, LogContext *);
|
||||
static void null_unthrottle(void *, int);
|
||||
static int null_cfg_info(void *);
|
||||
|
||||
@ -161,7 +161,7 @@ static void null_provide_ldisc (void *handle, Ldisc *ldisc) {
|
||||
|
||||
}
|
||||
|
||||
static void null_provide_logctx(void *handle, void *logctx) {
|
||||
static void null_provide_logctx(void *handle, LogContext *logctx) {
|
||||
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user