Changes in uspace/lib/net/include/il_messages.h [14f1db0:849ed54] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/net/include/il_messages.h
r14f1db0 r849ed54 28 28 29 29 /** @addtogroup net_il 30 * @{30 * @{ 31 31 */ 32 32 33 33 /** @file 34 * Internetwork layer modules messages.35 * @see il_interface.h36 * @see ip_interface.h34 * Internetwork layer modules messages. 35 * @see il_interface.h 36 * @see ip_interface.h 37 37 */ 38 38 … … 44 44 /** Internet layer modules messages. 45 45 */ 46 typedef enum 46 typedef enum{ 47 47 /** New device message. 48 48 * @see ip_device_req() … … 72 72 73 73 /** @name Internetwork layer specific message parameters definitions 74 *75 74 */ 76 75 /*@{*/ 77 76 78 /** Return the protocol number message parameter. 79 * @param[in] call The message call structure. 80 * 77 /** Returns the protocol number message parameter. 78 * @param[in] call The message call structure. 81 79 */ 82 #define IL_GET_PROTO(call) 80 #define IL_GET_PROTO(call) (int) IPC_GET_ARG1(*call) 83 81 84 /** Return the registering service message parameter. 85 * @param[in] call The message call structure. 86 * 82 /** Returns the registering service message parameter. 83 * @param[in] call The message call structure. 87 84 */ 88 #define IL_GET_SERVICE(call) 85 #define IL_GET_SERVICE(call) (services_t) IPC_GET_ARG2(*call) 89 86 90 87 /*@}*/
Note:
See TracChangeset
for help on using the changeset viewer.