Changes in uspace/srv/net/structures/module_map.h [21580dd:a000878c] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/structures/module_map.h
r21580dd ra000878c 79 79 /** Module name. 80 80 */ 81 c har * name;81 const char * name; 82 82 /** Module full path filename. 83 83 */ 84 c har * filename;84 const char * filename; 85 85 /** Connecting function. 86 86 */ … … 99 99 * @returns ENOMEM if there is not enough memory left. 100 100 */ 101 int add_module( module_ref * module, modules_ref modules, c har * name,char * filename, services_t service, task_id_t task_id, connect_module_t * connect_module );101 int add_module( module_ref * module, modules_ref modules, const char * name, const char * filename, services_t service, task_id_t task_id, connect_module_t * connect_module ); 102 102 103 103 /** Searches and returns the specified module. … … 116 116 * @returns 0 if there is no such module. 117 117 */ 118 task_id_t spawn( c har * fname );118 task_id_t spawn( const char * fname ); 119 119 120 120 #endif
Note:
See TracChangeset
for help on using the changeset viewer.