hc
2024-01-05 071106ecf68c401173c58808b1cf5f68cc50d390
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
// 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 __ISPSERVER_H__
#define __ISPSERVER_H__
 
#ifdef __cplusplus
extern "C" {
#endif
 
#define ISPSERVER_BUS_NAME "rockchip.ispserver"
#define ISPSERVER_PATH "/"
#define ISPSERVER_INTERFACE ISPSERVER_BUS_NAME ".server"
 
#define NS_SIGNAL_ISPSTATUSCHANGED    "IspStatusChanged"
 
char *ispserver_expo_info_get();
void ispserver_turnoff_signal_send();
 
#ifdef __cplusplus
}
#endif
 
#endif