Ivan Baravy
be21f83af2
Fix most compilation issues of umka_shell on Windows(R)(TM), not all of them.
17 lines
330 B
C
17 lines
330 B
C
/*
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
UMKa - User-Mode KolibriOS developer tools
|
|
vnet - virtual network card, tap interface
|
|
|
|
Copyright (C) 2023 Ivan Baravy <dunkaist@gmail.com>
|
|
*/
|
|
|
|
#ifndef VNET_TAP_H_INCLUDED
|
|
#define VNET_TAP_H_INCLUDED
|
|
|
|
struct vnet *
|
|
vnet_init_tap(void);
|
|
|
|
#endif // VNET_TAP_H_INCLUDED
|