1 /* SPDX-License-Identifier: Apache-2.0 */ 2 /* Copyright (C) 2018 IBM Corp. */ 3 4 #ifndef TRANSPORT_DBUS_H 5 #define TRANSPORT_DBUS_H 6 7 #include "dbus.h" 8 9 int transport_dbus_init(struct mbox_context *context); 10 void transport_dbus_free(struct mbox_context *context); 11 12 #endif /* TRANSPORT_DBUS_H */ 13