44 lines
1.2 KiB
C
44 lines
1.2 KiB
C
//
|
|
// Created by xajhu on 2019/10/10 0010.
|
|
//
|
|
#include "object_manager.h"
|
|
#include "configm.h"
|
|
|
|
#include "log.h"
|
|
|
|
ret_code object_config_init()
|
|
{
|
|
IHW_InitLOG("obj", NULL, TRUE);
|
|
return RET_OK;
|
|
}
|
|
|
|
ret_code object_config_chk(uint source, uint *config_type,
|
|
pointer input, int *input_len,
|
|
pointer output, int *output_len)
|
|
{
|
|
return RET_OK;
|
|
}
|
|
|
|
ret_code object_config_proc(uint source, uint config_type,
|
|
pointer input, int input_len,
|
|
pointer output, int *output_len)
|
|
{
|
|
LOG_EX(LOG_Debug, "[%016X]:type = %u, %s\n", source, config_type, (const char*)input);
|
|
return RET_OK;
|
|
}
|
|
|
|
ret_code object_config_get(uint source,
|
|
pointer input, int input_len,
|
|
pointer output, int *output_len)
|
|
{
|
|
LOG_EX(LOG_Debug, "[%016X]: %s\n", source, (const char*)input);
|
|
return RET_OK;
|
|
}
|
|
|
|
ret_code object_config_get_all(uint source,
|
|
pointer output, int *output_len)
|
|
{
|
|
LOG_EX(LOG_Debug, "[%016X]: \n", source);
|
|
return RET_OK;
|
|
}
|