You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
881 B
37 lines
881 B
/**
|
|
* @file adx_datadump_server.h
|
|
*
|
|
* Copyright (c) Huawei Technologies Co., Ltd. 2020-2020. All rights reserved.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
*/
|
|
|
|
#ifndef ADX_DATADUMP_SERVER_H
|
|
#define ADX_DATADUMP_SERVER_H
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
/**
|
|
* @brief initialize server for normal datadump function.
|
|
* @return
|
|
* IDE_DAEMON_OK: datadump server init success
|
|
* IDE_DAEMON_ERROR: datadump server init failed
|
|
*/
|
|
int AdxDataDumpServerInit();
|
|
|
|
/**
|
|
* @brief uninitialize server for normal datadump function.
|
|
* @return
|
|
* IDE_DAEMON_OK: datadump server uninit success
|
|
* IDE_DAEMON_ERROR: datadump server uninit failed
|
|
*/
|
|
int AdxDataDumpServerUnInit();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|
|
|