mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 22:02:58 -06:00
18 lines
283 B
C++
18 lines
283 B
C++
#ifndef _NetworkAdapter_h_
|
|
#define _NetworkAdapter_h_
|
|
|
|
#include <Core/Core.h>
|
|
|
|
using namespace Upp;
|
|
|
|
struct NetworkAdapter : Moveable<NetworkAdapter>
|
|
{
|
|
String description;
|
|
String fullname;
|
|
String mac;
|
|
String type;
|
|
};
|
|
|
|
Vector<NetworkAdapter> GetNetworkAdaptersInfo(void);
|
|
|
|
#endif
|