Adds sitara_depot/free_rtos Original one is on server_gorbunov/SmartForce4.0/sitara_depot
25 lines
488 B
C
25 lines
488 B
C
/*
|
|
* eth_ioctl.h
|
|
*
|
|
* Created on: 10 ìàð. 2023 ã.
|
|
* Author: sychev
|
|
*/
|
|
|
|
#ifndef FREE_RTOS_ETHERNET_ETH_IOCTL_H_
|
|
#define FREE_RTOS_ETHERNET_ETH_IOCTL_H_
|
|
|
|
#include <networking/enet/core/include/core/enet_base.h>
|
|
#include <networking/enet/core/include/core/enet_ioctl.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int32_t eth_ioctl(Enet_Handle handle, uint32_t core_id, uint32_t cmd, Enet_IoctlPrms * param);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* FREE_RTOS_ETHERNET_ETH_IOCTL_H_ */
|