Commit 0f737320 authored by captainwong's avatar captainwong

update

parent c180f138
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
#endif // _MSC_VER > 1000 #endif // _MSC_VER > 1000
#include <stdio.h> #include <stdio.h>
#include <shellapi.h>
#include <Shlobj.h> #include <Shlobj.h>
......
...@@ -64,7 +64,7 @@ public: ...@@ -64,7 +64,7 @@ public:
return ::TryEnterCriticalSection(&m_cs); return ::TryEnterCriticalSection(&m_cs);
} }
const LPCRITICAL_SECTION GetObject() { return &m_cs; } LPCRITICAL_SECTION GetLockObject() { return &m_cs; }
private: private:
CRITICAL_SECTION m_cs; CRITICAL_SECTION m_cs;
//BOOL bNullInit; //BOOL bNullInit;
......
...@@ -72,8 +72,10 @@ inline wchar_t* FormatWSAError(int errornumber) ...@@ -72,8 +72,10 @@ inline wchar_t* FormatWSAError(int errornumber)
case WSAETIMEDOUT: 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. "; 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; break;
default: default:{
return L"Unknown socket error."; static wchar_t buf[1024] = { 0 };
break; 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