diff --git a/src/ca/addrList.h b/src/ca/addrList.h index 1c17c11d8..868dd0b7b 100644 --- a/src/ca/addrList.h +++ b/src/ca/addrList.h @@ -12,23 +12,24 @@ #define addrListh #include "shareLib.h" -#include "envDefs.h" +#include "envDefs.h" +#include "osiSock.h" #ifdef __cplusplus extern "C" { #endif epicsShareFunc void epicsShareAPI configureChannelAccessAddressList - ( ELLLIST *pList, SOCKET sock, unsigned short port ); + ( struct ELLLIST *pList, SOCKET sock, unsigned short port ); epicsShareFunc void epicsShareAPI addAddrToChannelAccessAddressList - ( ELLLIST *pList, const ENV_PARAM *pEnv, unsigned short port ); + ( struct ELLLIST *pList, const ENV_PARAM *pEnv, unsigned short port ); epicsShareFunc void epicsShareAPI printChannelAccessAddressList - ( const ELLLIST *pList ); + ( const struct ELLLIST *pList ); epicsShareFunc void epicsShareAPI removeDuplicateAddresses - ( ELLLIST *pDestList, ELLLIST *pSrcList, int silent); + ( struct ELLLIST *pDestList, ELLLIST *pSrcList, int silent); #ifdef __cplusplus }