Rev 4350 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 4350 | Rev 4756 | ||
|---|---|---|---|
| Line 40... | Line 40... | ||
| 40 | 40 | ||
| 41 | #include <ipc/ipc.h> |
41 | #include <ipc/ipc.h> |
| 42 | 42 | ||
| 43 | /** Module initialization. |
43 | /** Module initialization. |
| 44 | * Is called by the module_start() function. |
44 | * Is called by the module_start() function. |
| 45 | * @param net_phone The networking moduel phone. Input parameter. |
45 | * @param[in] net_phone The networking moduel phone. |
| 46 | * @returns EOK on success. |
46 | * @returns EOK on success. |
| 47 | * @returns Other error codes as defined for each specific module initialize function. |
47 | * @returns Other error codes as defined for each specific module initialize function. |
| 48 | */ |
48 | */ |
| 49 | int nil_initialize( int net_phone ); |
49 | int nil_initialize( int net_phone ); |
| 50 | 50 | ||
| 51 | /** Message processing function. |
51 | /** Message processing function. |
| 52 | * @param callid The message identifier. Input parameter. |
52 | * @param[in] callid The message identifier. |
| 53 | * @param call The message parameters. Input parameter. |
53 | * @param[in] call The message parameters. |
| 54 | * @param answer The message answer parameters. Output parameter. |
54 | * @param[out] answer The message answer parameters. |
| 55 | * @param answer_count The last parameter for the actual answer in the answer parameter. Output parameter. |
55 | * @param[out] answer_count The last parameter for the actual answer in the answer parameter. |
| 56 | * @returns EOK on success. |
56 | * @returns EOK on success. |
| 57 | * @returns ENOTSUP if the message is not known. |
57 | * @returns ENOTSUP if the message is not known. |
| 58 | * @returns Other error codes as defined for each specific module message function. |
58 | * @returns Other error codes as defined for each specific module message function. |
| 59 | * @see nil_interface.h |
59 | * @see nil_interface.h |
| 60 | * @see IS_NET_NIL_MESSAGE() |
60 | * @see IS_NET_NIL_MESSAGE() |