Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
captainwong
jlib
Commits
0f737320
Commit
0f737320
authored
May 09, 2015
by
captainwong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
c180f138
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
385 additions
and
382 deletions
+385
-382
FileOper.h
FileOper.h
+304
-303
LocalLock.h
LocalLock.h
+1
-1
MyWSAError.h
MyWSAError.h
+80
-78
No files found.
FileOper.h
View file @
0f737320
...
...
@@ -10,6 +10,7 @@
#endif // _MSC_VER > 1000
#include <stdio.h>
#include <shellapi.h>
#include <Shlobj.h>
...
...
LocalLock.h
View file @
0f737320
...
...
@@ -64,7 +64,7 @@ public:
return
::
TryEnterCriticalSection
(
&
m_cs
);
}
const
LPCRITICAL_SECTION
Get
Object
()
{
return
&
m_cs
;
}
LPCRITICAL_SECTION
GetLock
Object
()
{
return
&
m_cs
;
}
private
:
CRITICAL_SECTION
m_cs
;
//BOOL bNullInit;
...
...
MyWSAError.h
View file @
0f737320
...
...
@@ -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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment