diff options
Diffstat (limited to 'include/libssh/priv.h')
-rw-r--r-- | include/libssh/priv.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/libssh/priv.h b/include/libssh/priv.h index 81dd6158..0c7105c7 100644 --- a/include/libssh/priv.h +++ b/include/libssh/priv.h @@ -425,6 +425,7 @@ struct ssh_message { struct ssh_channel_request channel_request; }; +#ifndef _WIN32 /* agent.c */ /** * @brief Create a new ssh agent structure. @@ -434,13 +435,14 @@ struct ssh_message { struct agent_struct *agent_new(struct ssh_session *session); void agent_close(struct agent_struct *agent); + /** * @brief Free an allocated ssh agent structure. * * @param agent The ssh agent structure to free. */ void agent_free(struct agent_struct *agent); -#ifndef _WIN32 + /** * @brief Check if the ssh agent is running. * |