VS 100 and 110 projects

- generated VS 100 and 110 projects
- changed message length from signed 32 bit int to std::size_t
This commit is contained in:
aleks-f
2013-03-11 23:48:41 -05:00
parent ff0e439aa5
commit bb904d613b
23 changed files with 3539 additions and 11 deletions

View File

@@ -61,7 +61,7 @@ void RequestMessage::send(std::ostream& ostr)
buildRequest(requestWriter);
requestWriter.flush();
messageLength(ss.tellp());
messageLength(static_cast<std::size_t>(ss.tellp()));
BinaryWriter socketWriter(ostr, BinaryWriter::LITTLE_ENDIAN_BYTE_ORDER);
_header.write(socketWriter);