I\'m writing a project and working with another party DLL.
Function from their DLL wants an IStream object to save result, but I can\'t understand how to create an I
Implement your own stream class and inherit the IStream interface. IStream is just a stream and can be pretty much what you decide it is as long as it is a stream (e.g. FileStream etc.)
Related: link