Macwinsock 8h 10
2" class="el">692 of file macwinsock.h. |
| #define EPROCLIM WSAEPROCLIM |
|
| #define EPROTONOSUPPORT WSAEPROTONOSUPPORT |
|
| #define EPROTOTYPE WSAEPROTOTYPE |
|
| #define EREMOTE WSAEREMOTE |
|
| #define ESHUTDOWN WSAESHUTDOWN |
|
| #define ESOCKTNOSUPPORT WSAESOCKTNOSUPPORT |
|
| #define ETIMEDOUT WSAETIMEDOUT |
|
| #define ETOOMANYREFS WSAETOOMANYREFS |
|
| #define EWOULDBLOCK WSAEWOULDBLOCK |
|
| |
Definition at line 40 of file macwinsock.h.
Referenced by Attr::Attr(), ImageIO::CanLoadImage(), YAHalf::CheckOffBound(), RGBHalf::CheckOffBound(), YAFloat::CheckOffBound(), RGBFloat::CheckOffBound(), YAByte::CheckOffBound(), RGBAByte::CheckOffBound(), RGBByte::CheckOffBound(), ImageIO::CloseWrite(), ImageIO::GetImageIOInfo(), HashStream::HashStream(), ImageIO::ImageIO(), RObject::Intersect(), ImageIO::IsFileOpen(), TimeLineSelection::IsInSelection(), RObject::IsPatch(), MCDriver::LiveCaptureInit(), Matrix34::Matrix34(), DLLPlugin::OnPtrMessage(), String::operator!=(), String::operator==(), YAHalf::operator==(), RGBAHalf::operator==(), RGBHalf::operator==(), HalfColorBufAlpha::operator==(), HalfColorBuf::operator==(), DLLPlugin::ParseArg(), HashArray< TYPE, ARG_TYPE >::Pop(), DLLPlugin::Save(), Matrix34::Set(), SetAppLocalizationDLL(), SetExtensionLocalizationDLL(), ImageIO::SetSaveOptions(), Matrix34::SetTranslate(), MCDriver::StaticCaptureSequence(), MCDriver::SupportsLiveCaptureFrame(), MCDriver::SupportsLiveCaptureSequence(), and MCDriver::SupportsStaticCaptureSequence(). |
#define FD_CLR
(
fd,
set
)
| |
Value:
do \
{ \
u_int __i; \
for (__i = 0; __i < ((fd_set *)(set))->fd_count ; __i++) \
{ \
if (((fd_set *)(set))->fd_array[__i] == fd) \
{ \
while (__i < ((fd_set *)(set))->fd_count-1) \
{ \
((fd_set *)(set))->fd_array[__i] = \
((fd_set *)(set))->fd_array[__i+1]; \
__i++; \
} \
((fd_set *)(set))->fd_count--; \
break; \
} \
} \
} while ( 0 )
Definition at line 95 of file macwinsock.h. |
#define FD_ISSET
(
fd,
set
)
__WSAFDIsSet((SOCKET)fd, (fd_set *)set)
| |