1.6.3.6 DRV_G3ADP_MAC_Close Function
C
void DRV_G3ADP_MAC_Close( DRV_HANDLE hMac );
Summary
Closes a client instance of the G3 ADP MAC Driver.
Description
This function closes a client instance of the G3 ADP MAC Driver. Used by tcpip_module_manager.
Precondition
DRV_G3ADP_MAC_Open() should have been called.
Parameters
Param | Description |
---|---|
hMac | Valid MAC handle, obtained by a call to DRV_G3ADP_MAC_Open. |
Returns
None.
Example
if(pNetIf->hIfMac != 0)
{
DRV_G3ADP_MAC_Close(pNetIf->hIfMac);
}
Remarks
None.