stash
[wine/wine64.git] / dlls / itss / storage.c
blobde0acfaee3eaed6c851f4ef7b95c1d9009621bbe
1 /*
2 * ITSS Storage implementation
4 * Copyright 2004 Mike McCormack
6 * see http://bonedaddy.net/pabs3/hhm/#chmspec
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #include "config.h"
25 #include <stdarg.h>
26 #include <stdio.h>
28 #define COBJMACROS
30 #include "windef.h"
31 #include "winbase.h"
32 #include "winuser.h"
33 #include "ole2.h"
35 #include "chm_lib.h"
36 #include "itsstor.h"
38 #include "wine/itss.h"
39 #include "wine/unicode.h"
40 #include "wine/debug.h"
42 WINE_DEFAULT_DEBUG_CHANNEL(itss);
44 /************************************************************************/
46 typedef struct _ITSS_IStorageImpl
48 const IStorageVtbl *vtbl_IStorage;
49 LONG ref;
50 struct chmFile *chmfile;
51 WCHAR dir[1];
52 } ITSS_IStorageImpl;
54 struct enum_info
56 struct enum_info *next, *prev;
57 struct chmUnitInfo ui;
60 typedef struct _IEnumSTATSTG_Impl
62 const IEnumSTATSTGVtbl *vtbl_IEnumSTATSTG;
63 LONG ref;
64 struct enum_info *first, *last, *current;
65 } IEnumSTATSTG_Impl;
67 typedef struct _IStream_Impl
69 const IStreamVtbl *vtbl_IStream;
70 LONG ref;
71 ITSS_IStorageImpl *stg;
72 ULONGLONG addr;
73 struct chmUnitInfo ui;
74 } IStream_Impl;
76 static HRESULT ITSS_create_chm_storage(
77 struct chmFile *chmfile, const WCHAR *dir, IStorage** ppstgOpen );
78 static IStream_Impl* ITSS_create_stream(
79 ITSS_IStorageImpl *stg, struct chmUnitInfo *ui );
81 /************************************************************************/
83 static HRESULT WINAPI ITSS_IEnumSTATSTG_QueryInterface(
84 IEnumSTATSTG* iface,
85 REFIID riid,
86 void** ppvObject)
88 IEnumSTATSTG_Impl *This = (IEnumSTATSTG_Impl *)iface;
90 if (IsEqualGUID(riid, &IID_IUnknown)
91 || IsEqualGUID(riid, &IID_IEnumSTATSTG))
93 IEnumSTATSTG_AddRef(iface);
94 *ppvObject = This;
95 return S_OK;
98 WARN("(%p)->(%s,%p),not found\n",This,debugstr_guid(riid),ppvObject);
99 return E_NOINTERFACE;
102 static ULONG WINAPI ITSS_IEnumSTATSTG_AddRef(
103 IEnumSTATSTG* iface)
105 IEnumSTATSTG_Impl *This = (IEnumSTATSTG_Impl *)iface;
106 return InterlockedIncrement(&This->ref);
109 static ULONG WINAPI ITSS_IEnumSTATSTG_Release(
110 IEnumSTATSTG* iface)
112 IEnumSTATSTG_Impl *This = (IEnumSTATSTG_Impl *)iface;
114 ULONG ref = InterlockedDecrement(&This->ref);
116 if (ref == 0)
118 while( This->first )
120 struct enum_info *t = This->first->next;
121 HeapFree( GetProcessHeap(), 0, This->first );
122 This->first = t;
124 HeapFree(GetProcessHeap(), 0, This);
125 ITSS_UnlockModule();
128 return ref;
131 static HRESULT WINAPI ITSS_IEnumSTATSTG_Next(
132 IEnumSTATSTG* iface,
133 ULONG celt,
134 STATSTG* rgelt,
135 ULONG* pceltFetched)
137 IEnumSTATSTG_Impl *This = (IEnumSTATSTG_Impl *)iface;
138 DWORD len, n;
139 struct enum_info *cur;
141 TRACE("%p %u %p %p\n", This, celt, rgelt, pceltFetched );
143 cur = This->current;
144 n = 0;
145 while( (n<celt) && cur)
147 WCHAR *str;
149 memset( rgelt, 0, sizeof *rgelt );
151 /* copy the name */
152 str = cur->ui.path;
153 if( *str == '/' )
154 str++;
155 len = strlenW( str ) + 1;
156 rgelt->pwcsName = CoTaskMemAlloc( len*sizeof(WCHAR) );
157 strcpyW( rgelt->pwcsName, str );
159 /* determine the type */
160 if( rgelt->pwcsName[len-2] == '/' )
162 rgelt->pwcsName[len-2] = 0;
163 rgelt->type = STGTY_STORAGE;
165 else
166 rgelt->type = STGTY_STREAM;
168 /* copy the size */
169 rgelt->cbSize.QuadPart = cur->ui.length;
171 /* advance to the next item if it exists */
172 n++;
173 cur = cur->next;
176 This->current = cur;
177 *pceltFetched = n;
179 if( n < celt )
180 return S_FALSE;
182 return S_OK;
185 static HRESULT WINAPI ITSS_IEnumSTATSTG_Skip(
186 IEnumSTATSTG* iface,
187 ULONG celt)
189 IEnumSTATSTG_Impl *This = (IEnumSTATSTG_Impl *)iface;
190 DWORD n;
191 struct enum_info *cur;
193 TRACE("%p %u\n", This, celt );
195 cur = This->current;
196 n = 0;
197 while( (n<celt) && cur)
199 n++;
200 cur = cur->next;
202 This->current = cur;
204 if( n < celt )
205 return S_FALSE;
207 return S_OK;
210 static HRESULT WINAPI ITSS_IEnumSTATSTG_Reset(
211 IEnumSTATSTG* iface)
213 IEnumSTATSTG_Impl *This = (IEnumSTATSTG_Impl *)iface;
215 TRACE("%p\n", This );
217 This->current = This->first;
219 return S_OK;
222 static HRESULT WINAPI ITSS_IEnumSTATSTG_Clone(
223 IEnumSTATSTG* iface,
224 IEnumSTATSTG** ppenum)
226 FIXME("\n");
227 return E_NOTIMPL;
230 static const IEnumSTATSTGVtbl IEnumSTATSTG_vtbl =
232 ITSS_IEnumSTATSTG_QueryInterface,
233 ITSS_IEnumSTATSTG_AddRef,
234 ITSS_IEnumSTATSTG_Release,
235 ITSS_IEnumSTATSTG_Next,
236 ITSS_IEnumSTATSTG_Skip,
237 ITSS_IEnumSTATSTG_Reset,
238 ITSS_IEnumSTATSTG_Clone
241 static IEnumSTATSTG_Impl *ITSS_create_enum( void )
243 IEnumSTATSTG_Impl *stgenum;
245 stgenum = HeapAlloc( GetProcessHeap(), 0, sizeof (IEnumSTATSTG_Impl) );
246 stgenum->vtbl_IEnumSTATSTG = &IEnumSTATSTG_vtbl;
247 stgenum->ref = 1;
248 stgenum->first = NULL;
249 stgenum->last = NULL;
250 stgenum->current = NULL;
252 ITSS_LockModule();
253 TRACE(" -> %p\n", stgenum );
255 return stgenum;
258 /************************************************************************/
260 static HRESULT WINAPI ITSS_IStorageImpl_QueryInterface(
261 IStorage* iface,
262 REFIID riid,
263 void** ppvObject)
265 ITSS_IStorageImpl *This = (ITSS_IStorageImpl *)iface;
267 if (IsEqualGUID(riid, &IID_IUnknown)
268 || IsEqualGUID(riid, &IID_IStorage))
270 IStorage_AddRef(iface);
271 *ppvObject = This;
272 return S_OK;
275 WARN("(%p)->(%s,%p),not found\n",This,debugstr_guid(riid),ppvObject);
276 return E_NOINTERFACE;
279 static ULONG WINAPI ITSS_IStorageImpl_AddRef(
280 IStorage* iface)
282 ITSS_IStorageImpl *This = (ITSS_IStorageImpl *)iface;
283 return InterlockedIncrement(&This->ref);
286 static ULONG WINAPI ITSS_IStorageImpl_Release(
287 IStorage* iface)
289 ITSS_IStorageImpl *This = (ITSS_IStorageImpl *)iface;
291 ULONG ref = InterlockedDecrement(&This->ref);
293 if (ref == 0)
295 chm_close(This->chmfile);
296 HeapFree(GetProcessHeap(), 0, This);
297 ITSS_UnlockModule();
300 return ref;
303 static HRESULT WINAPI ITSS_IStorageImpl_CreateStream(
304 IStorage* iface,
305 LPCOLESTR pwcsName,
306 DWORD grfMode,
307 DWORD reserved1,
308 DWORD reserved2,
309 IStream** ppstm)
311 FIXME("\n");
312 return E_NOTIMPL;
315 static HRESULT WINAPI ITSS_IStorageImpl_OpenStream(
316 IStorage* iface,
317 LPCOLESTR pwcsName,
318 void* reserved1,
319 DWORD grfMode,
320 DWORD reserved2,
321 IStream** ppstm)
323 ITSS_IStorageImpl *This = (ITSS_IStorageImpl *)iface;
324 IStream_Impl *stm;
325 DWORD len;
326 struct chmUnitInfo ui;
327 int r;
328 WCHAR *path, *p;
330 TRACE("%p %s %p %u %u %p\n", This, debugstr_w(pwcsName),
331 reserved1, grfMode, reserved2, ppstm );
333 len = strlenW( This->dir ) + strlenW( pwcsName ) + 1;
334 path = HeapAlloc( GetProcessHeap(), 0, len*sizeof(WCHAR) );
335 strcpyW( path, This->dir );
337 if( pwcsName[0] == '/' || pwcsName[0] == '\\' )
339 p = &path[strlenW( path ) - 1];
340 while( ( path <= p ) && ( *p == '/' ) )
341 *p-- = 0;
343 strcatW( path, pwcsName );
345 for(p=path; *p; p++) {
346 if(*p == '\\')
347 *p = '/';
350 if(*--p == '/')
351 *p = 0;
353 TRACE("Resolving %s\n", debugstr_w(path));
355 r = chm_resolve_object(This->chmfile, path, &ui);
356 HeapFree( GetProcessHeap(), 0, path );
358 if( r != CHM_RESOLVE_SUCCESS ) {
359 WARN("Could not resolve object\n");
360 return STG_E_FILENOTFOUND;
363 stm = ITSS_create_stream( This, &ui );
364 if( !stm )
365 return E_FAIL;
367 *ppstm = (IStream*) stm;
369 return S_OK;
372 static HRESULT WINAPI ITSS_IStorageImpl_CreateStorage(
373 IStorage* iface,
374 LPCOLESTR pwcsName,
375 DWORD grfMode,
376 DWORD dwStgFmt,
377 DWORD reserved2,
378 IStorage** ppstg)
380 FIXME("\n");
381 return E_NOTIMPL;
384 static HRESULT WINAPI ITSS_IStorageImpl_OpenStorage(
385 IStorage* iface,
386 LPCOLESTR pwcsName,
387 IStorage* pstgPriority,
388 DWORD grfMode,
389 SNB snbExclude,
390 DWORD reserved,
391 IStorage** ppstg)
393 ITSS_IStorageImpl *This = (ITSS_IStorageImpl *)iface;
395 FIXME("%p %s %p %u %p %u %p\n", This, debugstr_w(pwcsName),
396 pstgPriority, grfMode, snbExclude, reserved, ppstg);
397 return E_NOTIMPL;
400 static HRESULT WINAPI ITSS_IStorageImpl_CopyTo(
401 IStorage* iface,
402 DWORD ciidExclude,
403 const IID* rgiidExclude,
404 SNB snbExclude,
405 IStorage* pstgDest)
407 FIXME("\n");
408 return E_NOTIMPL;
411 static HRESULT WINAPI ITSS_IStorageImpl_MoveElementTo(
412 IStorage* iface,
413 LPCOLESTR pwcsName,
414 IStorage* pstgDest,
415 LPCOLESTR pwcsNewName,
416 DWORD grfFlags)
418 FIXME("\n");
419 return E_NOTIMPL;
422 static HRESULT WINAPI ITSS_IStorageImpl_Commit(
423 IStorage* iface,
424 DWORD grfCommitFlags)
426 FIXME("\n");
427 return E_NOTIMPL;
430 static HRESULT WINAPI ITSS_IStorageImpl_Revert(
431 IStorage* iface)
433 FIXME("\n");
434 return E_NOTIMPL;
437 static int ITSS_chm_enumerator(
438 struct chmFile *h,
439 struct chmUnitInfo *ui,
440 void *context)
442 struct enum_info *info;
443 IEnumSTATSTG_Impl* stgenum = context;
445 TRACE("adding %s to enumeration\n", debugstr_w(ui->path) );
447 info = HeapAlloc( GetProcessHeap(), 0, sizeof (struct enum_info) );
448 info->ui = *ui;
450 info->next = NULL;
451 info->prev = stgenum->last;
452 if( stgenum->last )
453 stgenum->last->next = info;
454 else
455 stgenum->first = info;
456 stgenum->last = info;
458 return CHM_ENUMERATOR_CONTINUE;
461 static HRESULT WINAPI ITSS_IStorageImpl_EnumElements(
462 IStorage* iface,
463 DWORD reserved1,
464 void* reserved2,
465 DWORD reserved3,
466 IEnumSTATSTG** ppenum)
468 ITSS_IStorageImpl *This = (ITSS_IStorageImpl *)iface;
469 IEnumSTATSTG_Impl* stgenum;
471 TRACE("%p %d %p %d %p\n", This, reserved1, reserved2, reserved3, ppenum );
473 stgenum = ITSS_create_enum();
474 if( !stgenum )
475 return E_FAIL;
477 chm_enumerate_dir(This->chmfile,
478 This->dir,
479 CHM_ENUMERATE_ALL,
480 ITSS_chm_enumerator,
481 stgenum );
483 stgenum->current = stgenum->first;
485 *ppenum = (IEnumSTATSTG*) stgenum;
487 return S_OK;
490 static HRESULT WINAPI ITSS_IStorageImpl_DestroyElement(
491 IStorage* iface,
492 LPCOLESTR pwcsName)
494 FIXME("\n");
495 return E_NOTIMPL;
498 static HRESULT WINAPI ITSS_IStorageImpl_RenameElement(
499 IStorage* iface,
500 LPCOLESTR pwcsOldName,
501 LPCOLESTR pwcsNewName)
503 FIXME("\n");
504 return E_NOTIMPL;
507 static HRESULT WINAPI ITSS_IStorageImpl_SetElementTimes(
508 IStorage* iface,
509 LPCOLESTR pwcsName,
510 const FILETIME* pctime,
511 const FILETIME* patime,
512 const FILETIME* pmtime)
514 FIXME("\n");
515 return E_NOTIMPL;
518 static HRESULT WINAPI ITSS_IStorageImpl_SetClass(
519 IStorage* iface,
520 REFCLSID clsid)
522 FIXME("\n");
523 return E_NOTIMPL;
526 static HRESULT WINAPI ITSS_IStorageImpl_SetStateBits(
527 IStorage* iface,
528 DWORD grfStateBits,
529 DWORD grfMask)
531 FIXME("\n");
532 return E_NOTIMPL;
535 static HRESULT WINAPI ITSS_IStorageImpl_Stat(
536 IStorage* iface,
537 STATSTG* pstatstg,
538 DWORD grfStatFlag)
540 FIXME("\n");
541 return E_NOTIMPL;
544 static const IStorageVtbl ITSS_IStorageImpl_Vtbl =
546 ITSS_IStorageImpl_QueryInterface,
547 ITSS_IStorageImpl_AddRef,
548 ITSS_IStorageImpl_Release,
549 ITSS_IStorageImpl_CreateStream,
550 ITSS_IStorageImpl_OpenStream,
551 ITSS_IStorageImpl_CreateStorage,
552 ITSS_IStorageImpl_OpenStorage,
553 ITSS_IStorageImpl_CopyTo,
554 ITSS_IStorageImpl_MoveElementTo,
555 ITSS_IStorageImpl_Commit,
556 ITSS_IStorageImpl_Revert,
557 ITSS_IStorageImpl_EnumElements,
558 ITSS_IStorageImpl_DestroyElement,
559 ITSS_IStorageImpl_RenameElement,
560 ITSS_IStorageImpl_SetElementTimes,
561 ITSS_IStorageImpl_SetClass,
562 ITSS_IStorageImpl_SetStateBits,
563 ITSS_IStorageImpl_Stat,
566 static HRESULT ITSS_create_chm_storage(
567 struct chmFile *chmfile, const WCHAR *dir, IStorage** ppstgOpen )
569 ITSS_IStorageImpl *stg;
570 DWORD len;
572 TRACE("%p %s\n", chmfile, debugstr_w( dir ) );
574 len = strlenW( dir ) + 1;
575 stg = HeapAlloc( GetProcessHeap(), 0,
576 sizeof (ITSS_IStorageImpl) + len*sizeof(WCHAR) );
577 stg->vtbl_IStorage = &ITSS_IStorageImpl_Vtbl;
578 stg->ref = 1;
579 stg->chmfile = chmfile;
580 strcpyW( stg->dir, dir );
582 *ppstgOpen = (IStorage*) stg;
584 ITSS_LockModule();
585 return S_OK;
588 HRESULT ITSS_StgOpenStorage(
589 const WCHAR* pwcsName,
590 IStorage* pstgPriority,
591 DWORD grfMode,
592 SNB snbExclude,
593 DWORD reserved,
594 IStorage** ppstgOpen)
596 struct chmFile *chmfile;
597 static const WCHAR szRoot[] = { '/', 0 };
599 TRACE("%s\n", debugstr_w(pwcsName) );
601 chmfile = chm_openW( pwcsName );
602 if( !chmfile )
603 return E_FAIL;
605 return ITSS_create_chm_storage( chmfile, szRoot, ppstgOpen );
608 /************************************************************************/
610 static HRESULT WINAPI ITSS_IStream_QueryInterface(
611 IStream* iface,
612 REFIID riid,
613 void** ppvObject)
615 IStream_Impl *This = (IStream_Impl *)iface;
617 if (IsEqualGUID(riid, &IID_IUnknown)
618 || IsEqualGUID(riid, &IID_ISequentialStream)
619 || IsEqualGUID(riid, &IID_IStream))
621 IStream_AddRef(iface);
622 *ppvObject = This;
623 return S_OK;
626 WARN("(%p)->(%s,%p),not found\n",This,debugstr_guid(riid),ppvObject);
627 return E_NOINTERFACE;
630 static ULONG WINAPI ITSS_IStream_AddRef(
631 IStream* iface)
633 IStream_Impl *This = (IStream_Impl *)iface;
634 return InterlockedIncrement(&This->ref);
637 static ULONG WINAPI ITSS_IStream_Release(
638 IStream* iface)
640 IStream_Impl *This = (IStream_Impl *)iface;
642 ULONG ref = InterlockedDecrement(&This->ref);
644 if (ref == 0)
646 IStorage_Release( (IStorage*) This->stg );
647 HeapFree(GetProcessHeap(), 0, This);
648 ITSS_UnlockModule();
651 return ref;
654 static HRESULT WINAPI ITSS_IStream_Read(
655 IStream* iface,
656 void* pv,
657 ULONG cb,
658 ULONG* pcbRead)
660 IStream_Impl *This = (IStream_Impl *)iface;
661 ULONG count;
663 TRACE("%p %p %u %p\n", This, pv, cb, pcbRead);
665 count = chm_retrieve_object(This->stg->chmfile,
666 &This->ui, pv, This->addr, cb);
667 This->addr += count;
668 if( pcbRead )
669 *pcbRead = count;
671 return count ? S_OK : S_FALSE;
674 static HRESULT WINAPI ITSS_IStream_Write(
675 IStream* iface,
676 const void* pv,
677 ULONG cb,
678 ULONG* pcbWritten)
680 FIXME("\n");
681 return E_NOTIMPL;
684 static HRESULT WINAPI ITSS_IStream_Seek(
685 IStream* iface,
686 LARGE_INTEGER dlibMove,
687 DWORD dwOrigin,
688 ULARGE_INTEGER* plibNewPosition)
690 IStream_Impl *This = (IStream_Impl *)iface;
691 LONGLONG newpos;
693 TRACE("%p %s %u %p\n", This,
694 wine_dbgstr_longlong( dlibMove.QuadPart ), dwOrigin, plibNewPosition );
696 newpos = This->addr;
697 switch( dwOrigin )
699 case STREAM_SEEK_CUR:
700 newpos = This->addr + dlibMove.QuadPart;
701 break;
702 case STREAM_SEEK_SET:
703 newpos = dlibMove.QuadPart;
704 break;
705 case STREAM_SEEK_END:
706 newpos = This->ui.length + dlibMove.QuadPart;
707 break;
710 if( ( newpos < 0 ) || ( newpos > This->ui.length ) )
711 return STG_E_INVALIDPOINTER;
713 This->addr = newpos;
714 if( plibNewPosition )
715 plibNewPosition->QuadPart = This->addr;
717 return S_OK;
720 static HRESULT WINAPI ITSS_IStream_SetSize(
721 IStream* iface,
722 ULARGE_INTEGER libNewSize)
724 FIXME("\n");
725 return E_NOTIMPL;
728 static HRESULT WINAPI ITSS_IStream_CopyTo(
729 IStream* iface,
730 IStream* pstm,
731 ULARGE_INTEGER cb,
732 ULARGE_INTEGER* pcbRead,
733 ULARGE_INTEGER* pcbWritten)
735 FIXME("\n");
736 return E_NOTIMPL;
739 static HRESULT WINAPI ITSS_IStream_Commit(
740 IStream* iface,
741 DWORD grfCommitFlags)
743 FIXME("\n");
744 return E_NOTIMPL;
747 static HRESULT WINAPI ITSS_IStream_Revert(
748 IStream* iface)
750 FIXME("\n");
751 return E_NOTIMPL;
754 static HRESULT WINAPI ITSS_IStream_LockRegion(
755 IStream* iface,
756 ULARGE_INTEGER libOffset,
757 ULARGE_INTEGER cb,
758 DWORD dwLockType)
760 FIXME("\n");
761 return E_NOTIMPL;
764 static HRESULT WINAPI ITSS_IStream_UnlockRegion(
765 IStream* iface,
766 ULARGE_INTEGER libOffset,
767 ULARGE_INTEGER cb,
768 DWORD dwLockType)
770 FIXME("\n");
771 return E_NOTIMPL;
774 static HRESULT WINAPI ITSS_IStream_Stat(
775 IStream* iface,
776 STATSTG* pstatstg,
777 DWORD grfStatFlag)
779 IStream_Impl *This = (IStream_Impl *)iface;
781 TRACE("%p %p %d\n", This, pstatstg, grfStatFlag);
783 memset( pstatstg, 0, sizeof *pstatstg );
784 if( !( grfStatFlag & STATFLAG_NONAME ) )
786 FIXME("copy the name\n");
788 pstatstg->type = STGTY_STREAM;
789 pstatstg->cbSize.QuadPart = This->ui.length;
790 pstatstg->grfMode = STGM_READ;
791 pstatstg->clsid = CLSID_ITStorage;
793 return S_OK;
796 static HRESULT WINAPI ITSS_IStream_Clone(
797 IStream* iface,
798 IStream** ppstm)
800 FIXME("\n");
801 return E_NOTIMPL;
804 static const IStreamVtbl ITSS_IStream_vtbl =
806 ITSS_IStream_QueryInterface,
807 ITSS_IStream_AddRef,
808 ITSS_IStream_Release,
809 ITSS_IStream_Read,
810 ITSS_IStream_Write,
811 ITSS_IStream_Seek,
812 ITSS_IStream_SetSize,
813 ITSS_IStream_CopyTo,
814 ITSS_IStream_Commit,
815 ITSS_IStream_Revert,
816 ITSS_IStream_LockRegion,
817 ITSS_IStream_UnlockRegion,
818 ITSS_IStream_Stat,
819 ITSS_IStream_Clone,
822 static IStream_Impl *ITSS_create_stream(
823 ITSS_IStorageImpl *stg, struct chmUnitInfo *ui )
825 IStream_Impl *stm;
827 stm = HeapAlloc( GetProcessHeap(), 0, sizeof (IStream_Impl) );
828 stm->vtbl_IStream = &ITSS_IStream_vtbl;
829 stm->ref = 1;
830 stm->addr = 0;
831 stm->ui = *ui;
832 stm->stg = stg;
833 IStorage_AddRef( (IStorage*) stg );
835 ITSS_LockModule();
837 TRACE(" -> %p\n", stm );
839 return stm;