git.stg.codes
/
stg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Fixed crash on problems with loading plugins.
[stg.git]
/
stglibs
/
common.lib
/
include
/
stg
/
common.h
diff --git
a/stglibs/common.lib/include/stg/common.h
b/stglibs/common.lib/include/stg/common.h
index 1dd8c1c72f7694c7049abdf2650e1b0851b3ec05..fe3b3af29377975fff95360eb7d8606078cf2334 100644
(file)
--- a/
stglibs/common.lib/include/stg/common.h
+++ b/
stglibs/common.lib/include/stg/common.h
@@
-107,7
+107,7
@@
while (pos != std::string::npos)
{
res.push_back(conv(value.substr(startPos, pos - startPos)));
startPos = pos + 1;
{
res.push_back(conv(value.substr(startPos, pos - startPos)));
startPos = pos + 1;
- pos = value.find_first_of(delim, pos);
+ pos = value.find_first_of(delim, pos
+ 1
);
}
res.push_back(conv(value.substr(startPos, pos - startPos)));
return res;
}
res.push_back(conv(value.substr(startPos, pos - startPos)));
return res;
@@
-139,6
+139,11
@@
int ParseYesNo(const std::string & str, bool * val);
bool WaitPackets(int sd);
bool WaitPackets(int sd);
+bool ReadAll(int sd, void * dest, size_t size);
+bool WriteAll(int sd, const void * source, size_t size);
+
+std::string ToPrintable(const std::string & src);
+
//-----------------------------------------------------------------------------
int str2x(const std::string & str, int32_t & x);
int str2x(const std::string & str, uint32_t & x);
//-----------------------------------------------------------------------------
int str2x(const std::string & str, int32_t & x);
int str2x(const std::string & str, uint32_t & x);