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?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.