xref: /openbmc/qemu/net/vmnet_int.h (revision 81ad2964)
1 /*
2  * vmnet_int.h
3  *
4  * Copyright(c) 2022 Vladislav Yaroshchuk <vladislav.yaroshchuk@jetbrains.com>
5  *
6  * This work is licensed under the terms of the GNU GPL, version 2 or later.
7  * See the COPYING file in the top-level directory.
8  *
9  */
10 #ifndef VMNET_INT_H
11 #define VMNET_INT_H
12 
13 #include "qemu/osdep.h"
14 #include "vmnet_int.h"
15 #include "clients.h"
16 
17 #include <vmnet/vmnet.h>
18 
19 typedef struct VmnetState {
20   NetClientState nc;
21 
22 } VmnetState;
23 
24 
25 #endif /* VMNET_INT_H */
26