Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 4755 → Rev 4756

/branches/network/uspace/srv/net/nil/nil_module.h
42,7 → 42,7
 
/** Module initialization.
* Is called by the module_start() function.
* @param net_phone The networking moduel phone. Input parameter.
* @param[in] net_phone The networking moduel phone.
* @returns EOK on success.
* @returns Other error codes as defined for each specific module initialize function.
*/
49,10 → 49,10
int nil_initialize( int net_phone );
 
/** Message processing function.
* @param callid The message identifier. Input parameter.
* @param call The message parameters. Input parameter.
* @param answer The message answer parameters. Output parameter.
* @param answer_count The last parameter for the actual answer in the answer parameter. Output parameter.
* @param[in] callid The message identifier.
* @param[in] call The message parameters.
* @param[out] answer The message answer parameters.
* @param[out] answer_count The last parameter for the actual answer in the answer parameter.
* @returns EOK on success.
* @returns ENOTSUP if the message is not known.
* @returns Other error codes as defined for each specific module message function.