blob: d6ec39e4dac637cad10523408b3b22ad28db2d32 [file] [log] [blame]
Andrew Jeffery5335f092018-08-09 14:56:08 +09301/* SPDX-License-Identifier: Apache-2.0 */
2/* Copyright (C) 2018 IBM Corp. */
3
4#ifndef TRANSPORT_H
5#define TRANSPORT_H
6
7#include "mbox.h"
8
9struct transport_ops {
10 int (*flush_events)(struct mbox_context *context);
11};
12
13#endif /* TRANSPORT_H */