hc
2023-11-06 89281ea41721b3027e14d66c19f2dbb4d11847d3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2021 Fuzhou Rockchip Electronics Co., Ltd. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
 
#ifndef __LIBIPCPRO_LOG_CONTROL_H__
#define __LIBIPCPRO_LOG_CONTROL_H__
 
#ifdef __cplusplus
extern "C" {
#endif
 
int IPCProtocol_log_en_get();
void IPCProtocol_log_en_set(bool log_en);
 
#ifdef __cplusplus
}
#endif
 
#endif