1
0
mirror of https://github.com/VDR4Arch/vdr.git synced 2023-10-10 13:36:52 +02:00

Adjusted 'Custom services' description to the actual implementation

This commit is contained in:
Klaus Schmidinger 2005-08-21 12:55:03 +02:00
parent 06a27f142b
commit 35de98e6a1

View File

@ -929,13 +929,12 @@ if (Plugin)
To send messages to, or request services from some plugin that offers the protocol, a To send messages to, or request services from some plugin that offers the protocol, a
plugin can call the function <tt>cPluginManager::CallFirstService()</tt>. This function plugin can call the function <tt>cPluginManager::CallFirstService()</tt>. This function
will send the request to the first plugin that supports this service protocol. The will send the request to all plugins until one plugin handles it.
function returns a pointer to the plugin that handled the request, or <tt>NULL</tt> The function returns a pointer to the plugin that handled the request, or <tt>NULL</tt>
if no plugin handled the request. if no plugin handled it.
<p> <p>
To send a messages to all plugins, a plugin can call the function To send a messages to all plugins, a plugin can call the function
<tt>cPluginManager::CallAllServices()</tt>. This function will send the request to <tt>cPluginManager::CallAllServices()</tt>. This function returns <tt>true</tt> if
all plugins that support this service protocol. The function returns <tt>true</tt> if
any plugin handled the request, or <tt>false</tt> if no plugin handled the request. any plugin handled the request, or <tt>false</tt> if no plugin handled the request.
<!--X1.3.30--></td></tr></table> <!--X1.3.30--></td></tr></table>