Archives
D Programming
DD.gnu digitalmars.D digitalmars.D.bugs digitalmars.D.dtl digitalmars.D.dwt digitalmars.D.announce digitalmars.D.learn digitalmars.D.debugger C/C++ Programming
c++c++.announce c++.atl c++.beta c++.chat c++.command-line c++.dos c++.dos.16-bits c++.dos.32-bits c++.idde c++.mfc c++.rtl c++.stl c++.stl.hp c++.stl.port c++.stl.sgi c++.stlsoft c++.windows c++.windows.16-bits c++.windows.32-bits c++.wxwindows digitalmars.empire digitalmars.DMDScript |
c++ - iostream read & write mising unsigned char* args variant
C++ 8.34, Win32. I get an error about istream::read and ostream::write because there is no variant for unsigned char* (The norm these days) only for char*. Sources are big, not modifiable easily. So I change iostream.h, compile is OK, but of course I get the undefined message at link time. So, how can I recompile istream.cpp etc. and put it back in the standard libs. I have the sources src/ios, but no instruction I can understand how to make a good compile of them. If I have to use one of the src/build file : which one ? (just to compile & make my modified libs, no need to redo the whole thing.) Apr 27 2003
In article <1104_1051458884 news.digitalmars.com>, Jean-Pierre H. Dumas says...C++ 8.34, Win32. I get an error about istream::read and ostream::write because there is no variant for unsigned char* (The norm these days) only for char*. Apr 28 2003
|