mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-01 03:22:48 -05:00
Name vtable structure types more consistently.
Now they're all called FooVtable, instead of a mixture of that and Foo_vtable.
This commit is contained in:
10
defs.h
10
defs.h
@ -42,11 +42,11 @@ typedef struct IdempotentCallback IdempotentCallback;
|
||||
|
||||
typedef struct SockAddr SockAddr;
|
||||
|
||||
typedef struct Socket_vtable Socket_vtable;
|
||||
typedef struct Plug_vtable Plug_vtable;
|
||||
typedef struct SocketVtable SocketVtable;
|
||||
typedef struct PlugVtable PlugVtable;
|
||||
|
||||
typedef struct Backend Backend;
|
||||
typedef struct Backend_vtable Backend_vtable;
|
||||
typedef struct BackendVtable BackendVtable;
|
||||
|
||||
typedef struct Ldisc_tag Ldisc;
|
||||
typedef struct LogContext_tag LogContext;
|
||||
@ -74,8 +74,8 @@ typedef struct settings_e settings_e;
|
||||
|
||||
typedef struct SessionSpecial SessionSpecial;
|
||||
|
||||
typedef const Socket_vtable *Socket;
|
||||
typedef const Plug_vtable *Plug;
|
||||
typedef const SocketVtable *Socket;
|
||||
typedef const PlugVtable *Plug;
|
||||
|
||||
/*
|
||||
* A small structure wrapping up a (pointer, length) pair so that it
|
||||
|
Reference in New Issue
Block a user