Changes in uspace/srv/net/structures/measured_strings.h [21580dd:aadf01e] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/structures/measured_strings.h
r21580dd raadf01e 57 57 /** Character string data. 58 58 */ 59 char * 59 char * value; 60 60 /** Character string length. 61 61 */ 62 size_t 62 size_t length; 63 63 }; 64 64 … … 71 71 * @returns NULL if there is not enough memory left. 72 72 */ 73 measured_string_ref measured_string_create_bulk( const char * string, size_t length);73 measured_string_ref measured_string_create_bulk(const char * string, size_t length); 74 74 75 75 /** Copies the given measured string with separated header and data parts. … … 79 79 * @returns NULL if there is not enough memory left. 80 80 */ 81 measured_string_ref measured_string_copy( measured_string_ref source);81 measured_string_ref measured_string_copy(measured_string_ref source); 82 82 83 83 /** Receives a measured strings array from a calling module. … … 95 95 * @returns Other error codes as defined for the async_data_write_finalize() function. 96 96 */ 97 int measured_strings_receive( measured_string_ref * strings, char ** data, size_t count);97 int measured_strings_receive(measured_string_ref * strings, char ** data, size_t count); 98 98 99 99 /** Replies the given measured strings array to a calling module. … … 108 108 * @returns Other error codes as defined for the async_data_read_finalize() function. 109 109 */ 110 int measured_strings_reply( const measured_string_ref strings, size_t count);110 int measured_strings_reply(const measured_string_ref strings, size_t count); 111 111 112 112 /** Receives a measured strings array from another module. … … 124 124 * @returns Other error codes as defined for the async_data_read_start() function. 125 125 */ 126 int measured_strings_return( int phone, measured_string_ref * strings, char ** data, size_t count);126 int measured_strings_return(int phone, measured_string_ref * strings, char ** data, size_t count); 127 127 128 128 /** Sends the given measured strings array to another module. … … 136 136 * @returns Other error codes as defined for the async_data_write_start() function. 137 137 */ 138 int measured_strings_send( int phone, const measured_string_ref strings, size_t count);138 int measured_strings_send(int phone, const measured_string_ref strings, size_t count); 139 139 140 140 #endif
Note:
See TracChangeset
for help on using the changeset viewer.