Hello to all.
I've successfully compiled STLPort 4.5.3 with it's own Iostream and I
also sucessfully compiled CryptoPP 4.2 on my computer. Now, when trying
to use the STL stream implementation in my own program, at the same time
has cryptoPP, I get a strange error. Suppose I open a file for writing
as so :
d_PAKIdxFile.open(RULEPAKINDEXNAME.c_str(), std::ios::out);
Then immediately after this line of code I write stuff to the stream
like this :
d_PAKIdxFile << (d_IdxIt->first) << " " << (d_IdxIt->second)->d_Offset
<< " " << (d_IdxIt->second)->d_Size << " " <<
(d_IdxIt->second)->d_HashPwd << std::endl;
Then I close the file. The problem is that nothing gets written to the
file !?!?!? Has anyone else encountered this problem !?!?!
Luc.
P.S. I have win2k SP2 with VC6 SP5.
