Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/include/devman.h

    re72fb34 r692c40cb  
    4141#include <bool.h>
    4242
    43 extern int devman_get_phone(devman_interface_t, unsigned int);
    44 extern void devman_hangup_phone(devman_interface_t);
    4543
    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 *);
     44int devman_get_phone(devman_interface_t, unsigned int);
     45void devman_hangup_phone(devman_interface_t iface);
    4946
    50 extern int devman_device_connect(devman_handle_t, unsigned int);
    51 extern int devman_parent_device_connect(devman_handle_t, unsigned int);
     47int devman_driver_register(const char *, async_client_conn_t);
     48int devman_child_device_register(const char *, match_id_list_t *, device_handle_t, device_handle_t *);
    5249
    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);
     50int devman_device_connect(device_handle_t handle, unsigned int flags);
     51int devman_parent_device_connect(device_handle_t handle, unsigned int flags);
    5752
    58 extern int devman_add_device_to_class(devman_handle_t, const char *);
     53int devman_device_get_handle(const char *pathname, device_handle_t *handle, unsigned int flags);
     54
     55int devman_add_device_to_class(device_handle_t dev_handle, const char *class_name);
    5956
    6057#endif
Note: See TracChangeset for help on using the changeset viewer.