From 5b1c985a0e7df03aefffa13bc6c765859819a180 Mon Sep 17 00:00:00 2001 From: Aris Adamantiadis Date: Thu, 30 Sep 2010 11:10:08 +0200 Subject: Changed the threads cbks from struct to publ func --- include/libssh/callbacks.h | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) (limited to 'include/libssh') diff --git a/include/libssh/callbacks.h b/include/libssh/callbacks.h index a2ea6a69..d2526694 100644 --- a/include/libssh/callbacks.h +++ b/include/libssh/callbacks.h @@ -279,8 +279,21 @@ struct ssh_threads_callbacks_struct { LIBSSH_API int ssh_threads_set_callbacks(struct ssh_threads_callbacks_struct *cb); -extern struct ssh_threads_callbacks_struct ssh_threads_pthread; -extern struct ssh_threads_callbacks_struct ssh_threads_noop; +/** + * @brief returns a pointer on the pthread threads callbacks, to be used with + * ssh_threads_set_callbacks. + * @warning you have to link with the library ssh_threads. + * @see ssh_threads_set_callbacks + */ +LIBSSH_API struct ssh_threads_callbacks_struct *ssh_threads_get_pthread(void); + +/** + * @brief returns a pointer on the noop threads callbacks, to be used with + * ssh_threads_set_callbacks. These callbacks do nothing and are being used by + * default. + * @see ssh_threads_set_callbacks + */ +LIBSSH_API struct ssh_threads_callbacks_struct *ssh_threads_get_noop(void); /** @} */ #ifdef __cplusplus -- cgit