diff options
author | David Robillard <d@drobilla.net> | 2011-05-25 02:13:01 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-05-25 02:13:01 +0000 |
commit | ff708b63186a1fef46ef6f6126f2c3b34c81c8b7 (patch) | |
tree | dd8a12f37d1f8b6a867ced60c7f450376ad01868 /suil/suil.h | |
parent | d465088da650b9686163da30ba2637e9b2714409 (diff) | |
download | suil-ff708b63186a1fef46ef6f6126f2c3b34c81c8b7.tar.gz suil-ff708b63186a1fef46ef6f6126f2c3b34c81c8b7.tar.bz2 suil-ff708b63186a1fef46ef6f6126f2c3b34c81c8b7.zip |
Update documentation.
git-svn-id: http://svn.drobilla.net/lad/trunk/suil@3321 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'suil/suil.h')
-rw-r--r-- | suil/suil.h | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/suil/suil.h b/suil/suil.h index 7951d42..d78526e 100644 --- a/suil/suil.h +++ b/suil/suil.h @@ -117,7 +117,7 @@ suil_host_new(SuilPortWriteFunc write_func, SuilPortUnsubscribeFunc unsubscribe_func); /** - Free @a host. + Free @c host. */ SUIL_API void @@ -126,7 +126,7 @@ suil_host_free(SuilHost* host); /** Check if suil can wrap a UI type. @param host_type_uri The URI of the desired widget type of the host, - corresponding to the @a type_uri parameter of @ref suil_instance_new. + corresponding to the @c type_uri parameter of @ref suil_instance_new. @param ui_type_uri The URI of the UI widget type. @return 0 if wrapping is unsupported, otherwise the quality of the wrapping where 1 is the highest quality (direct native embedding with no wrapping) @@ -143,8 +143,7 @@ suil_ui_supported(const char* host_type_uri, @param controller Opaque host controller pointer. @param container_type_uri URI of the desired host container widget type. @param plugin_uri URI of the plugin to instantiate this UI for. - @param ui_uri URI of a specifically desired UI, or NULL to use the - best choice given @a type_uri. + @param ui_uri URI of the specifically desired UI. @param ui_type_uri URI of the actual UI widget type. @param ui_bundle_path Path of the UI bundle. @param ui_binary_path Path of the UI binary. @@ -176,10 +175,10 @@ suil_instance_free(SuilInstance* instance); /** Get the widget for a UI instance. - Returns an opaque pointer to a widget, the type of which is defined by the - corresponding parameter to suil_instantiate. Note this may be a wrapper - widget created by Suil, and not necessarily the widget directly implemented - by the UI. + Returns an opaque pointer to a widget, the type of which matches the @c + container_type_uri parameter of @ref suil_instance_new. Note this may be a + wrapper widget created by Suil, and not necessarily the widget directly + implemented by the UI. */ SUIL_API SuilWidget |