Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is IStreamPtr?

What is "IStreamPtr" ?

Is it something that hold "byte data" or can it be?

If so is it possible to write its content to file?

like image 612
Novalis Avatar asked Apr 15 '26 18:04

Novalis


1 Answers

It is a smart pointer class that you got from the #import directive. Derived from the _com_ptr_t class, a wrapper class for COM interface pointers. IStream in this case. Docs are here and here.

Like any pointer type, writing it to a file is not possible. Writing the content of the stream to file is certainly possible.

like image 175
Hans Passant Avatar answered Apr 18 '26 09:04

Hans Passant