| OLD | NEW |
| (Empty) | |
| 1 /** |
| 2 * @copyright |
| 3 * ==================================================================== |
| 4 * Copyright (c) 2008 CollabNet. All rights reserved. |
| 5 * |
| 6 * This software is licensed as described in the file COPYING, which |
| 7 * you should have received as part of this distribution. The terms |
| 8 * are also available at http://subversion.tigris.org/license-1.html. |
| 9 * If newer versions of this license are posted there, you may use a |
| 10 * newer version instead, at your option. |
| 11 * |
| 12 * This software consists of voluntary contributions made by many |
| 13 * individuals. For exact contribution history, see the revision |
| 14 * history and logs, available at http://subversion.tigris.org/. |
| 15 * ==================================================================== |
| 16 * @endcopyright |
| 17 * |
| 18 * @file svn_auth_kwallet.h |
| 19 * @brief Subversion's authentication system - Support for KWallet |
| 20 */ |
| 21 |
| 22 #ifndef SVN_AUTH_KWALLET_H |
| 23 #define SVN_AUTH_KWALLET_H |
| 24 |
| 25 #include <apr_pools.h> |
| 26 |
| 27 #include "svn_auth.h" |
| 28 |
| 29 #ifdef __cplusplus |
| 30 extern "C" { |
| 31 #endif /* __cplusplus */ |
| 32 |
| 33 /** |
| 34 * Create and return @a *provider, an authentication provider of type @c |
| 35 * svn_auth_cred_simple_t that gets/sets information from the user's |
| 36 * ~/.subversion configuration directory. Allocate @a *provider in |
| 37 * @a pool. |
| 38 * |
| 39 * This is like svn_client_get_simple_provider(), except that the |
| 40 * password is stored in KWallet. |
| 41 * |
| 42 * @since New in 1.6 |
| 43 * @note This function actually works only on systems with libsvn_auth_kwallet |
| 44 * and KWallet installed. |
| 45 */ |
| 46 void |
| 47 svn_auth_get_kwallet_simple_provider(svn_auth_provider_object_t **provider, |
| 48 apr_pool_t *pool); |
| 49 |
| 50 #ifdef __cplusplus |
| 51 } |
| 52 #endif /* __cplusplus */ |
| 53 |
| 54 #endif /* SVN_AUTH_KWALLET_H */ |
| OLD | NEW |