// Copyright 2020 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. #include #include #include #include #include #include #include #include #include #include #include #include #include #include "IPCProtocol.h" #include "dbus_connection.h" int IPCProtocol_init(void) { int ret = -1; try { DBus::Connection con = get_dbus_conn(); ret = 0; } catch (DBus::Error err) { printf("DBus::Error - %s\n", err.what()); } return ret; } void IPCProtocol_deinit(void) { }