Forum: C++ Jun 17th, 2006 |
| Replies: 5 Views: 1,881 well actually I have an input buffered data more like 2-8 MB of data and I am doing some processing on it, I have done it with file IO so I am doing the processing on files, I need to seek data, read... |
Forum: C++ Jun 17th, 2006 |
| Replies: 5 Views: 1,881 I don't want to output data to file I want to handle some buffered operation stsstream actually is IOstream and it works with binary data .. most of the job is done in the ststream but the problem is... |
Forum: C++ Jun 17th, 2006 |
| Replies: 5 Views: 1,881 I have tried to overload the strstream constructor and add the line below but I have a problem I couldn't access the bp or the _pptr provate members of streambuf
... |
Forum: C++ Jun 17th, 2006 |
| Replies: 5 Views: 1,881 hi,
well my question may be very basic but can u help me
I have a buffer that including my data which is binary data and I want to use the iostream to handle the buffer read/write, seek ...... |
Forum: Visual Basic 4 / 5 / 6 May 24th, 2006 |
| Replies: 1 Views: 2,062 I use this code but it crashes
Dim BufferSize As Long
Dim BufferPtr As Long
Dim MemoryPtr As Long
BufferSize = FileLen(CommonDialog1.FileName)
MemoryPtr = GlobalAlloc(GMEM_FIXED, BufferSize)... |
Forum: Visual Basic 4 / 5 / 6 May 24th, 2006 |
| Replies: 1 Views: 2,062 I want to allocate a large array of data "three mega bytes" and I don't know how to do this in VB after allocating this array I want to pass a pointer to it to C++ DLL what is the appropriate pointer... |
Forum: C++ May 20th, 2006 |
| Replies: 1 Views: 1,081 I want to write a c++ code that generates a DLL, the purpose of the exported Function is to do some processing on data on the memory, the main problem here is that I want my code to return also a... |