12 lines
246 B
C
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
|