Changes in uspace/lib/c/include/devman.h [692c40cb:e72fb34] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/devman.h
r692c40cb re72fb34 41 41 #include <bool.h> 42 42 43 extern int devman_get_phone(devman_interface_t, unsigned int); 44 extern void devman_hangup_phone(devman_interface_t); 43 45 44 int devman_get_phone(devman_interface_t, unsigned int); 45 void devman_hangup_phone(devman_interface_t iface); 46 extern int devman_driver_register(const char *, async_client_conn_t); 47 extern int devman_add_function(const char *, fun_type_t, match_id_list_t *, 48 devman_handle_t, devman_handle_t *); 46 49 47 int devman_driver_register(const char *, async_client_conn_t);48 int devman_child_device_register(const char *, match_id_list_t *, device_handle_t, device_handle_t *);50 extern int devman_device_connect(devman_handle_t, unsigned int); 51 extern int devman_parent_device_connect(devman_handle_t, unsigned int); 49 52 50 int devman_device_connect(device_handle_t handle, unsigned int flags); 51 int devman_parent_device_connect(device_handle_t handle, unsigned int flags); 53 extern int devman_device_get_handle(const char *, devman_handle_t *, 54 unsigned int); 55 extern int devman_device_get_handle_by_class(const char *, const char *, 56 devman_handle_t *, unsigned int); 52 57 53 int devman_device_get_handle(const char *pathname, device_handle_t *handle, unsigned int flags); 54 55 int devman_add_device_to_class(device_handle_t dev_handle, const char *class_name); 58 extern int devman_add_device_to_class(devman_handle_t, const char *); 56 59 57 60 #endif
Note:
See TracChangeset
for help on using the changeset viewer.