23 lines
903 B
C
23 lines
903 B
C
|
//
|
||
|
// Created by xajhu on 2019/10/10 0010.
|
||
|
//
|
||
|
|
||
|
#ifndef DRIVERS_OBJECT_MANAGER_H
|
||
|
#define DRIVERS_OBJECT_MANAGER_H
|
||
|
#include "rpc/rpc_common.h"
|
||
|
|
||
|
ret_code object_config_init();
|
||
|
|
||
|
ret_code object_config_chk(uint source, uint *config_type,
|
||
|
pointer input, int *input_len,
|
||
|
pointer output, int *output_len);
|
||
|
ret_code object_config_proc(uint source, uint config_type,
|
||
|
pointer input, int input_len,
|
||
|
pointer output, int *output_len);
|
||
|
ret_code object_config_get(uint source,
|
||
|
pointer input, int input_len,
|
||
|
pointer output, int *output_len);
|
||
|
ret_code object_config_get_all(uint source,
|
||
|
pointer output, int *output_len);
|
||
|
#endif //DRIVERS_OBJECT_MANAGER_H
|