summaryrefslogtreecommitdiff
path: root/src/adaptor_setting.h
blob: 9bef62e5c630c0792bc4ed6d713befc393ae0e7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/**
 * @file        adaptor_api.h
 * @brief       API interface server

 * Copyright (c) 2017 Samsung Electronics Co., Ltd.
 * This software is the confidential and proprietary information
 * of Samsung Electronics, Inc. ("Confidential Information"). You
 * shall not disclose such Confidential Information and shall use
 * it only in accordance with the terms of the license agreement
 * you entered into with Samsung.
 */

#ifndef __ADAPTOR_SETTING_H__
#define __ADAPTOR_SETTING_H__

#ifdef __cplusplus
extern "C" {
#endif

#include "sa_types.h"

/**
 * @fn        void *setting_main_thread(void *pv)
 * @brief     main function to run configuration setting thread
 * @param     void *pv
 * @return    void *
 */
	void *setting_main_thread(void *pv);

/**
 * @fn        sa_error_e sa_remove_config_file(void)
 * @brief     function to remove split config files
 * @return    sa_error_e
 */
	sa_error_e sa_remove_config_file(void);

#ifdef __cplusplus
}
#endif
#endif							/* __ADAPTOR_SETTING_H__ */