#include "xmltk.h"Go to the source code of this file.
Compounds | |
| class | CMemoryStream |
Functions | |
| bool | CreateMemoryStream (RCLIID riid, 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 }
|
1.2.11.1 written by Dimitri van Heesch,
© 1997-2001