0
votes
4answers
114 views
Overloading operator>> to a char buffer in C++ - can I tell the stream length?
I'm on a custom C++ crash course. I've known the basics for many years, but I'm currently trying to refresh my memory and learn more. To that end, as my second task (after writing …
2
votes
3answers
66 views
FILE * and istream: connect the two?
Suppose I "popen" an executable, I get a FILE* in return. Furthermore, suppose I'd like to "connect" this file to an istream object for easier processing, is there a way to do this …
1
vote
2answers
62 views
istream get method behavior
I read istream::get and a doubt still hangs. Let's say my delimiter is actually the NULL '\0' character, what happens in this case? From what I read:
If the delimiting character …
0
votes
2answers
115 views
How to store an IStream to a file via C#?
I'm working with a 3rd party component that returns an IStream object (System.Runtime.InteropServices.ComTypes.IStream). I need to take the data in that IStream and write it to a …
0
votes
2answers
88 views
what is the result of incrementing an istream_iterator which is already at the end of the stream?
I've looked at the standard and didn't see an obvious answer.
suppose i've done this:
std::istream_iterator<char> is(file);
while(is != std::istream_iterator<char>()) …
0
votes
3answers
120 views
How can I read from an std::istream (using operator>>)?
How can I read from an std::istream using operator>>?
I tried the following:
void foo(const std::istream& in) {
std::string tmp;
while(in >> tmp) {
std: …
0
votes
1answer
225 views
Drag and drop from C# to Windows Explorer with IStorage/IStream
I've been working on what sounds like simple functionality for way too long now. The idea is that I have an application with a TreeView. This treeview represents contents of a da …
0
votes
1answer
82 views
How do I use MySQL C++ Connector for storing binary data?
I have a block of binary data defined as:
void* address, size_t binarySize;
that I want to store to a MySQL database using MySQL C++ Connector.
The function setBlob() takes istr …
0
votes
1answer
88 views
Append data to an IStream object
Hi
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 …
0
votes
4answers
442 views
Getting an IntPtr to a ulong variable in C#
I need to pass an IntPtr to IStream.Read, and the IntPtr should point to a ulong variable. How do I get this IntPtr that points to my ulong variable?
2
votes
2answers
787 views
How to convert BYTE* into a gdi+ image object?
I want to convert a BYTE* into an gdi+ Image object.
How can I do this?
The BYTE* seems a Dib point.
I found Image has a method named Image::FromStream() which may help,
But I can …
