ultimatepp/bazaar/ProtectClient/NetworkAdapter.h
micio 370410f89e Bazaar/ProtectClient : put in UPP namespace
git-svn-id: svn://ultimatepp.org/upp/trunk@12222 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2018-08-31 23:04:58 +00:00

20 lines
295 B
C

#ifndef _NetworkAdapter_h_
#define _NetworkAdapter_h_
#include <Core/Core.h>
NAMESPACE_UPP
struct NetworkAdapter : Moveable<NetworkAdapter>
{
String description;
String fullname;
String mac;
String type;
};
Vector<NetworkAdapter> GetNetworkAdaptersInfo(void);
END_UPP_NAMESPACE
#endif