summaryrefslogtreecommitdiffstats
path: root/src/include/kim
diff options
context:
space:
mode:
authorAlexandra Ellwood <lxs@mit.edu>2008-09-26 14:08:36 +0000
committerAlexandra Ellwood <lxs@mit.edu>2008-09-26 14:08:36 +0000
commit4aa84967da59b2b6da901ba63ccbb625cc8a9a91 (patch)
tree7b43ca76614efa50ffb66ea1163142defd891433 /src/include/kim
parentb0cca8266580d7f22b6c91e9930cea2429555ddf (diff)
downloadkrb5-4aa84967da59b2b6da901ba63ccbb625cc8a9a91.tar.gz
krb5-4aa84967da59b2b6da901ba63ccbb625cc8a9a91.tar.xz
krb5-4aa84967da59b2b6da901ba63ccbb625cc8a9a91.zip
Removed application name setting function from kim_selection_hints headers
ticket: 6055 git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@20758 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include/kim')
-rw-r--r--src/include/kim/kim_selection_hints.h30
1 files changed, 2 insertions, 28 deletions
diff --git a/src/include/kim/kim_selection_hints.h b/src/include/kim/kim_selection_hints.h
index a8d63415b..6e7ee24c5 100644
--- a/src/include/kim/kim_selection_hints.h
+++ b/src/include/kim/kim_selection_hints.h
@@ -190,8 +190,7 @@ extern "C" {
* mechanism for determining the name of the calling process. If your
* application runs on one of these platforms (or is cross-platform)
* you should provide a localized version of its name with
- * #kim_selection_hints_set_application_name(). You can check what name
- * will be used with #kim_selection_hints_get_application_name().
+ * #kim_library_set_application_name().
*
* In many cases a single application may select different identities for
* different purposes. For example an email application might use different
@@ -277,34 +276,9 @@ kim_error kim_selection_hints_get_hint (kim_selection_hints in_selection_hints,
/*!
* \param io_selection_hints a selection hints object to modify.
- * \param in_application_name a localized string containing the full name of the application.
- * \note If you do not call this function KIM will attempt to determine the application
- * name at runtime. If that fails (the functionality is only available on some platforms)
- * then KIM will use the application identity string.
- * \return On success, #KIM_NO_ERROR. On failure, an error code representing the failure.
- * \brief Set the application name for use in user interaction.
- * \sa kim_selection_hints_get_application_name()
- */
-kim_error kim_selection_hints_set_application_name (kim_selection_hints io_selection_hints,
- kim_string in_application_name);
-
-/*!
- * \param in_selection_hints a selection hints object.
- * \param out_application_name on exit, the localized full name of the application specified
- * in \a in_selection_hints. Must be freed with kim_string_free().
- * \return On success, #KIM_NO_ERROR. On failure, an error code representing the failure.
- * \brief Get the application name for use in user interaction.
- * \sa kim_selection_hints_set_application_name()
- */
-kim_error kim_selection_hints_get_application_name (kim_selection_hints in_selection_hints,
- kim_string *out_application_name);
-
-/*!
- * \param io_selection_hints a selection hints object to modify.
* \param in_explanation a localized string describing why the caller needs the identity.
* \note If the application only does one thing (the reason it needs an identity is obvious)
- * then you may not need to call this function. You may still need to call
- * #kim_selection_hints_set_application_name()
+ * then you may not need to call this function.
* \return On success, #KIM_NO_ERROR. On failure, an error code representing the failure.
* \brief Set the strings used to prompt the user to select the identity.
* \sa kim_selection_hints_get_explanation()