-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove SLEEP define. in linux os, sleep microsecond and second is dif…
…ferent function. and have no good idea to sleep 500ms. Add RecvTimeout function. if need timeout/block receive, need call this function. for block call, set timeout value to 0.
- Loading branch information
Showing
5 changed files
with
97 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
#ifndef VERSION_H | ||
#define VERSION_H | ||
|
||
|
||
// Version | ||
#define VERSION_NUMBER 2,5,2,193 | ||
#define VERSION_FILEVERSION L"2.5.2.193" | ||
#define VERSION_BUILDTIME L"2020/04/26" | ||
|
||
#ifdef _DEBUG | ||
#define VERSION_PRODUCTVERSION L"Ver.2.5 for Debug" | ||
#define VERSION_FILEDESCRIPTION L"Sloong Universal Debug Libaray" | ||
#define VERSION_PRODUCTNAME L"Sloong Universal Debug Libaray" | ||
#else | ||
#define VERSION_PRODUCTVERSION L"Ver.2.5") | ||
#define VERSION_FILEDESCRIPTION L"Sloong Universal Libaray" | ||
#define VERSION_PRODUCTNAME L"Sloong Universal Libaray" | ||
#endif // _DEBUG | ||
#define VERSION_INTERNALNAME L"Universal.dll") | ||
#define VERSION_COMPANYNAME L"Sloong, Inc.") | ||
#define VERSION_LEGALCOPYRIGHT L"Copyright (C) 2014-2020 Sloong, Inc." | ||
|
||
|
||
#endif // !VERSION_H | ||
#ifndef VERSION_H | ||
#define VERSION_H | ||
|
||
|
||
// Version | ||
#define VERSION_NUMBER 2,5,2,194 | ||
#define VERSION_FILEVERSION L"2.5.2.194" | ||
#define VERSION_BUILDTIME L"2020/04/26" | ||
|
||
#ifdef _DEBUG | ||
#define VERSION_PRODUCTVERSION L"Ver.2.5 for Debug" | ||
#define VERSION_FILEDESCRIPTION L"Sloong Universal Debug Libaray" | ||
#define VERSION_PRODUCTNAME L"Sloong Universal Debug Libaray" | ||
#else | ||
#define VERSION_PRODUCTVERSION L"Ver.2.5") | ||
#define VERSION_FILEDESCRIPTION L"Sloong Universal Libaray" | ||
#define VERSION_PRODUCTNAME L"Sloong Universal Libaray" | ||
#endif // _DEBUG | ||
#define VERSION_INTERNALNAME L"Universal.dll") | ||
#define VERSION_COMPANYNAME L"Sloong, Inc.") | ||
#define VERSION_LEGALCOPYRIGHT L"Copyright (C) 2014-2020 Sloong, Inc." | ||
|
||
|
||
#endif // !VERSION_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2.5.2.193 | ||
2.5.2.194 |