stoneage8.5/石器时代8.5客户端最新源代码/石器源码/other/GetMacAddress.h
2020-06-22 17:49:02 +08:00

12 lines
246 B
C

#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