summaryrefslogtreecommitdiff
path: root/src/adaptor_interface.h
blob: fc31f9bab48db659b88a97d6fe1fdc4e0827ce8d (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
/**
 * @file        adaptor_interface.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_INTERFACE_H__
#define __ADAPTOR_INTERFACE_H__

#ifdef __cplusplus
extern "C" {
#endif
/**
 * @fn        void *api_main_thread(void *pv)
 * @brief     main function to run api thread
 * @param     void *pv
 * @return    void *
 */
	void *api_main_thread(void *pv);

#ifdef __cplusplus
}
#endif
#endif							/* __ADAPTOR_INTERFACE_H__ */