Main Page   Namespace List   Class Hierarchy   Compound List   File List   Compound Members   File Members  

memstream.cpp File Reference

#include "xmltk.h"

Go to the source code of this file.

Compounds

class  CMemoryStream

Functions

bool CreateMemoryStream (RCLIID riid, void **ppvObj)


Function Documentation

bool CreateMemoryStream RCLIID    rcliid,
void **    ppvObj
 

Definition at line 250 of file memstream.cpp.

00251 {
00252     bool bRet = false;
00253     CMemoryStream* pms = new CMemoryStream();
00254     if (pms)
00255     {
00256         bRet = pms->QueryInterface(riid, ppvObj);
00257         pms->Release();
00258     }
00259 
00260     return bRet;
00261 }


Generated on Sat Dec 22 16:01:54 2001 for XMILLforBinaryFormat by doxygen1.2.11.1 written by Dimitri van Heesch, © 1997-2001