10 char ErrorStr[GAI_STRERROR_BUFFER_SIZE + 1];
12 int MsgLen = FormatMessageA(
13 FORMAT_MESSAGE_FROM_SYSTEM |
14 FORMAT_MESSAGE_IGNORE_INSERTS |
15 FORMAT_MESSAGE_MAX_WIDTH_MASK,
18 MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
24 return AString(ErrorStr, MsgLen);
26 return gai_strerror(a_ErrorCode);
AString ErrorString(int a_ErrorCode)
Returns the readable form of a getaddressinfo type error code.