1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-12-02 01:17:52 +03:00

Fix build on Windows.

git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@240 7dcaeef0-15fb-0310-b436-a5af3365683c
This commit is contained in:
Andreas Schneider
2009-03-08 09:54:38 +00:00
parent fad349fecd
commit d3e64a744e
2 changed files with 7 additions and 1 deletions

View File

@@ -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.
*