Tagged Questions

2
votes
3answers
95 views

MSVC istream implementation locking buffer

I'm working with some existing code which is deserializing objects stored in text files (I potentially need to read tens of millions of these). The contents of the file are first read into a wstring ...
0
votes
1answer
337 views

Append data to an IStream object

I am making calls to a web service to get data from my dll. I am getting the data in a char* object in parts. I want to get the whole data into an IStream object. I am running a while loop and ...