Changes in uspace/lib/net/include/il_messages.h [849ed54:14f1db0] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/net/include/il_messages.h
r849ed54 r14f1db0 28 28 29 29 /** @addtogroup net_il 30 * 30 * @{ 31 31 */ 32 32 33 33 /** @file 34 * 35 * 36 * 34 * 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 * 74 75 */ 75 76 /*@{*/ 76 77 77 /** Returns the protocol number message parameter. 78 * @param[in] call The message call structure. 78 /** Return the protocol number message parameter. 79 * @param[in] call The message call structure. 80 * 79 81 */ 80 #define IL_GET_PROTO(call) 82 #define IL_GET_PROTO(call) (int) IPC_GET_ARG1(*call) 81 83 82 /** Returns the registering service message parameter. 83 * @param[in] call The message call structure. 84 /** Return the registering service message parameter. 85 * @param[in] call The message call structure. 86 * 84 87 */ 85 #define IL_GET_SERVICE(call) 88 #define IL_GET_SERVICE(call) (services_t) IPC_GET_ARG2(*call) 86 89 87 90 /*@}*/
Note:
See TracChangeset
for help on using the changeset viewer.