Fixed issue #2495: "Show Reflog" dialog shows empty action for "push" entries
[TortoiseGit.git] / src / TortoisePlink / sshgssc.h
blob0f271f84af260095a738d7577ae9626882192424
1 #ifndef PUTTY_SSHGSSC_H
2 #define PUTTY_SSHGSSC_H
3 #include "putty.h"
4 #ifndef NO_GSSAPI
6 #include "pgssapi.h"
7 #include "sshgss.h"
9 typedef struct gssapi_ssh_gss_ctx {
10 OM_uint32 maj_stat;
11 OM_uint32 min_stat;
12 gss_ctx_id_t ctx;
13 } gssapi_ssh_gss_ctx;
15 void ssh_gssapi_bind_fns(struct ssh_gss_library *lib);
17 #else
19 int ssh_gssapi_init(void);
21 #endif /*NO_GSSAPI*/
23 #endif /*PUTTY_SSHGSSC_H*/