hc
2024-05-14 bedbef8ad3e75a304af6361af235302bcc61d06b
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