1 #ifndef _DM_WRAPPER_H_ 2 #define _DM_WRAPPER_H_ 3 4 #include "device_manager_defs.h" 5 6 status_t init_dm_wrapper(void); 7 status_t uninit_dm_wrapper(void); 8 9 status_t get_root(device_node_cookie *cookie); 10 status_t get_child(device_node_cookie *cookie); 11 status_t get_next_child(device_node_cookie *cookie); 12 status_t dm_get_next_attr(struct device_attr_info *attr); 13 14 #endif 15