Commit 0f737320 authored by captainwong's avatar captainwong

update

parent c180f138
......@@ -10,6 +10,7 @@
#endif // _MSC_VER > 1000
#include <stdio.h>
#include <shellapi.h>
#include <Shlobj.h>
......
......@@ -64,7 +64,7 @@ public:
return ::TryEnterCriticalSection(&m_cs);
}
const LPCRITICAL_SECTION GetObject() { return &m_cs; }
LPCRITICAL_SECTION GetLockObject() { return &m_cs; }
private:
CRITICAL_SECTION m_cs;
//BOOL bNullInit;
......
......@@ -72,8 +72,10 @@ inline wchar_t* FormatWSAError(int errornumber)
case WSAETIMEDOUT:
return L"The connection has been dropped, because of a network failure or because the system on the other end went down without notice. ";
break;
default:
return L"Unknown socket error.";
break;
default:{
static wchar_t buf[1024] = { 0 };
swprintf_s(buf, L"Unknown socket error %d.", errornumber);
return buf;
}break;
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment