stoneage8.5/石器时代8.5客户端最新源代码/石器源码/other/GetMacAddress.h

12 lines
246 B
C
Raw Normal View History

2020-06-23 15:27:59 +08:00
#ifndef _GETMACADDRESS
#define _GETMACADDRESS
typedef struct MAC_ADDR_t
{
unsigned char addr[6];
}MAC_ADDR;
extern int GetMACaddress(MAC_ADDR *MacAddr,int MaxGetCount);
extern void PrintMACaddress(unsigned char MACData[]);
#endif