Ignore:
File:
1 edited

Legend:

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

    r692c40cb re72fb34  
    4141#include <bool.h>
    4242
     43extern int devman_get_phone(devman_interface_t, unsigned int);
     44extern void devman_hangup_phone(devman_interface_t);
    4345
    44 int devman_get_phone(devman_interface_t, unsigned int);
    45 void devman_hangup_phone(devman_interface_t iface);
     46extern int devman_driver_register(const char *, async_client_conn_t);
     47extern int devman_add_function(const char *, fun_type_t, match_id_list_t *,
     48    devman_handle_t, devman_handle_t *);
    4649
    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 *);
     50extern int devman_device_connect(devman_handle_t, unsigned int);
     51extern int devman_parent_device_connect(devman_handle_t, unsigned int);
    4952
    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);
     53extern int devman_device_get_handle(const char *, devman_handle_t *,
     54    unsigned int);
     55extern int devman_device_get_handle_by_class(const char *, const char *,
     56    devman_handle_t *, unsigned int);
    5257
    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);
     58extern int devman_add_device_to_class(devman_handle_t, const char *);
    5659
    5760#endif
Note: See TracChangeset for help on using the changeset viewer.