2 * Compound Storage (32 bit version)
4 * Implemented using the documentation of the LAOLA project at
5 * <URL:http://wwwwbs.cs.tu-berlin.de/~schwartz/pmh/index.html>
6 * (Thanks to Martin Schwartz <schwartz@cs.tu-berlin.de>)
8 * This include file contains definitions of types and function
9 * prototypes that are used in the many files implementing the
10 * storage functionality
12 * Copyright 1998,1999 Francis Beaudet
13 * Copyright 1998,1999 Thuy Nguyen
15 * This library is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU Lesser General Public
17 * License as published by the Free Software Foundation; either
18 * version 2.1 of the License, or (at your option) any later version.
20 * This library is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23 * Lesser General Public License for more details.
25 * You should have received a copy of the GNU Lesser General Public
26 * License along with this library; if not, write to the Free Software
27 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
29 #ifndef __STORAGE32_H__
30 #define __STORAGE32_H__
40 * Definitions for the file format offsets.
42 static const ULONG OFFSET_BIGBLOCKSIZEBITS = 0x0000001e;
43 static const ULONG OFFSET_SMALLBLOCKSIZEBITS = 0x00000020;
44 static const ULONG OFFSET_BBDEPOTCOUNT = 0x0000002C;
45 static const ULONG OFFSET_ROOTSTARTBLOCK = 0x00000030;
46 static const ULONG OFFSET_SBDEPOTSTART = 0x0000003C;
47 static const ULONG OFFSET_SBDEPOTCOUNT = 0x00000040;
48 static const ULONG OFFSET_EXTBBDEPOTSTART = 0x00000044;
49 static const ULONG OFFSET_EXTBBDEPOTCOUNT = 0x00000048;
50 static const ULONG OFFSET_BBDEPOTSTART = 0x0000004C;
51 static const ULONG OFFSET_PS_NAME = 0x00000000;
52 static const ULONG OFFSET_PS_NAMELENGTH = 0x00000040;
53 static const ULONG OFFSET_PS_PROPERTYTYPE = 0x00000042;
54 static const ULONG OFFSET_PS_PREVIOUSPROP = 0x00000044;
55 static const ULONG OFFSET_PS_NEXTPROP = 0x00000048;
56 static const ULONG OFFSET_PS_DIRPROP = 0x0000004C;
57 static const ULONG OFFSET_PS_GUID = 0x00000050;
58 static const ULONG OFFSET_PS_TSS1 = 0x00000064;
59 static const ULONG OFFSET_PS_TSD1 = 0x00000068;
60 static const ULONG OFFSET_PS_TSS2 = 0x0000006C;
61 static const ULONG OFFSET_PS_TSD2 = 0x00000070;
62 static const ULONG OFFSET_PS_STARTBLOCK = 0x00000074;
63 static const ULONG OFFSET_PS_SIZE = 0x00000078;
64 static const WORD DEF_BIG_BLOCK_SIZE_BITS = 0x0009;
65 static const WORD DEF_SMALL_BLOCK_SIZE_BITS = 0x0006;
66 static const WORD DEF_BIG_BLOCK_SIZE = 0x0200;
67 static const WORD DEF_SMALL_BLOCK_SIZE = 0x0040;
68 static const ULONG BLOCK_EXTBBDEPOT = 0xFFFFFFFC;
69 static const ULONG BLOCK_SPECIAL = 0xFFFFFFFD;
70 static const ULONG BLOCK_END_OF_CHAIN = 0xFFFFFFFE;
71 static const ULONG BLOCK_UNUSED = 0xFFFFFFFF;
72 static const ULONG PROPERTY_NULL = 0xFFFFFFFF;
74 #define PROPERTY_NAME_MAX_LEN 0x20
75 #define PROPERTY_NAME_BUFFER_LEN 0x40
77 #define PROPSET_BLOCK_SIZE 0x00000080
80 * Property type of relation
82 #define PROPERTY_RELATION_PREVIOUS 0
83 #define PROPERTY_RELATION_NEXT 1
84 #define PROPERTY_RELATION_DIR 2
87 * Property type constants
89 #define PROPTYPE_STORAGE 0x01
90 #define PROPTYPE_STREAM 0x02
91 #define PROPTYPE_ROOT 0x05
94 * These defines assume a hardcoded blocksize. The code will assert
95 * if the blocksize is different. Some changes will have to be done if it
98 #define BIG_BLOCK_SIZE 0x200
99 #define COUNT_BBDEPOTINHEADER 109
100 #define LIMIT_TO_USE_SMALL_BLOCK 0x1000
101 #define NUM_BLOCKS_PER_DEPOT_BLOCK 128
104 * These are signatures to detect the type of Document file.
106 static const BYTE STORAGE_magic[8] ={0xd0,0xcf,0x11,0xe0,0xa1,0xb1,0x1a,0xe1};
107 static const BYTE STORAGE_oldmagic[8] ={0xd0,0xcf,0x11,0xe0,0x0e,0x11,0xfc,0x0d};
110 * Forward declarations of all the structures used by the storage
113 typedef struct StorageBaseImpl StorageBaseImpl;
114 typedef struct StorageImpl StorageImpl;
115 typedef struct StorageInternalImpl StorageInternalImpl;
116 typedef struct BlockChainStream BlockChainStream;
117 typedef struct SmallBlockChainStream SmallBlockChainStream;
118 typedef struct IEnumSTATSTGImpl IEnumSTATSTGImpl;
119 typedef struct StgProperty StgProperty;
120 typedef struct StgStreamImpl StgStreamImpl;
123 * This utility structure is used to read/write the information in a storage
128 WCHAR name[PROPERTY_NAME_MAX_LEN];
129 WORD sizeOfNameString;
131 ULONG previousProperty;
134 GUID propertyUniqueID;
143 /*************************************************************************
144 * Big Block File support
146 * The big block file is an abstraction of a flat file separated in
147 * same sized blocks. The implementation for the methods described in
148 * this section appear in stg_bigblockfile.c
152 * Declaration of the data structures
154 typedef struct BigBlockFile BigBlockFile,*LPBIGBLOCKFILE;
155 typedef struct MappedPage MappedPage,*LPMAPPEDPAGE;
160 ULARGE_INTEGER filesize;
166 MappedPage *victimhead, *victimtail;
167 ULONG num_victim_pages;
174 * Declaration of the functions used to manipulate the BigBlockFile
177 BigBlockFile* BIGBLOCKFILE_Construct(HANDLE hFile,
182 void BIGBLOCKFILE_Destructor(LPBIGBLOCKFILE This);
183 void* BIGBLOCKFILE_GetBigBlock(LPBIGBLOCKFILE This, ULONG index);
184 void* BIGBLOCKFILE_GetROBigBlock(LPBIGBLOCKFILE This, ULONG index);
185 void BIGBLOCKFILE_ReleaseBigBlock(LPBIGBLOCKFILE This, void *pBlock);
186 void BIGBLOCKFILE_SetSize(LPBIGBLOCKFILE This, ULARGE_INTEGER newSize);
187 ULARGE_INTEGER BIGBLOCKFILE_GetSize(LPBIGBLOCKFILE This);
189 /*************************************************************************
190 * Ole Convert support
193 void OLECONVERT_CreateOleStream(LPSTORAGE pStorage);
194 HRESULT OLECONVERT_CreateCompObjStream(LPSTORAGE pStorage, LPCSTR strOleTypeName);
196 /****************************************************************************
197 * Storage32BaseImpl definitions.
199 * This structure defines the base information contained in all implementations
200 * of IStorage32 contained in this file storage implementation.
202 * In OOP terms, this is the base class for all the IStorage32 implementations
203 * contained in this file.
205 struct StorageBaseImpl
207 IStorageVtbl *lpVtbl; /* Needs to be the first item in the struct
208 * since we want to cast this in a Storage32 pointer */
210 IPropertySetStorageVtbl *pssVtbl; /* interface for adding a properties stream */
213 * Reference count of this object
218 * Ancestor storage (top level)
220 StorageImpl* ancestorStorage;
223 * Index of the property for the root of
226 ULONG rootPropertySetIndex;
229 * virtual Destructor method.
231 void (*v_destructor)(StorageBaseImpl*);
236 * Prototypes for the methods of the Storage32BaseImpl class.
238 HRESULT WINAPI StorageBaseImpl_QueryInterface(
243 ULONG WINAPI StorageBaseImpl_AddRef(
246 ULONG WINAPI StorageBaseImpl_Release(
249 HRESULT WINAPI StorageBaseImpl_OpenStream(
251 const OLECHAR* pwcsName, /* [string][in] */
252 void* reserved1, /* [unique][in] */
253 DWORD grfMode, /* [in] */
254 DWORD reserved2, /* [in] */
255 IStream** ppstm); /* [out] */
257 HRESULT WINAPI StorageBaseImpl_OpenStorage(
259 const OLECHAR* pwcsName, /* [string][unique][in] */
260 IStorage* pstgPriority, /* [unique][in] */
261 DWORD grfMode, /* [in] */
262 SNB snbExclude, /* [unique][in] */
263 DWORD reserved, /* [in] */
264 IStorage** ppstg); /* [out] */
266 HRESULT WINAPI StorageBaseImpl_EnumElements(
268 DWORD reserved1, /* [in] */
269 void* reserved2, /* [size_is][unique][in] */
270 DWORD reserved3, /* [in] */
271 IEnumSTATSTG** ppenum); /* [out] */
273 HRESULT WINAPI StorageBaseImpl_Stat(
275 STATSTG* pstatstg, /* [out] */
276 DWORD grfStatFlag); /* [in] */
278 HRESULT WINAPI StorageBaseImpl_RenameElement(
280 const OLECHAR* pwcsOldName, /* [string][in] */
281 const OLECHAR* pwcsNewName); /* [string][in] */
283 HRESULT WINAPI StorageBaseImpl_CreateStream(
285 const OLECHAR* pwcsName, /* [string][in] */
286 DWORD grfMode, /* [in] */
287 DWORD reserved1, /* [in] */
288 DWORD reserved2, /* [in] */
289 IStream** ppstm); /* [out] */
291 HRESULT WINAPI StorageBaseImpl_SetClass(
293 REFCLSID clsid); /* [in] */
295 /****************************************************************************
296 * Storage32Impl definitions.
298 * This implementation of the IStorage32 interface represents a root
299 * storage. Basically, a document file.
303 struct StorageBaseImpl base;
306 * The following data members are specific to the Storage32Impl
309 HANDLE hFile; /* Physical support for the Docfile */
310 LPOLESTR pwcsName; /* Full path of the document file */
312 /* FIXME: should this be in Storage32BaseImpl ? */
313 WCHAR filename[PROPERTY_NAME_BUFFER_LEN];
318 WORD bigBlockSizeBits;
319 WORD smallBlockSizeBits;
321 ULONG smallBlockSize;
322 ULONG bigBlockDepotCount;
323 ULONG rootStartBlock;
324 ULONG smallBlockDepotStart;
325 ULONG extBigBlockDepotStart;
326 ULONG extBigBlockDepotCount;
327 ULONG bigBlockDepotStart[COUNT_BBDEPOTINHEADER];
329 ULONG blockDepotCached[NUM_BLOCKS_PER_DEPOT_BLOCK];
330 ULONG indexBlockDepotCached;
334 * Abstraction of the big block chains for the chains of the header.
336 BlockChainStream* rootBlockChain;
337 BlockChainStream* smallBlockDepotChain;
338 BlockChainStream* smallBlockRootChain;
341 * Pointer to the big block file abstraction
343 BigBlockFile* bigBlockFile;
347 * Method declaration for the Storage32Impl class
350 HRESULT WINAPI StorageImpl_CreateStorage(
352 const OLECHAR* pwcsName, /* [string][in] */
353 DWORD grfMode, /* [in] */
354 DWORD dwStgFmt, /* [in] */
355 DWORD reserved2, /* [in] */
356 IStorage** ppstg); /* [out] */
358 HRESULT WINAPI StorageImpl_CopyTo(
360 DWORD ciidExclude, /* [in] */
361 const IID* rgiidExclude, /* [size_is][unique][in] */
362 SNB snbExclude, /* [unique][in] */
363 IStorage* pstgDest); /* [unique][in] */
365 HRESULT WINAPI StorageImpl_MoveElementTo(
367 const OLECHAR* pwcsName, /* [string][in] */
368 IStorage* pstgDest, /* [unique][in] */
369 const OLECHAR* pwcsNewName, /* [string][in] */
370 DWORD grfFlags); /* [in] */
372 HRESULT WINAPI StorageImpl_Commit(
374 DWORD grfCommitFlags); /* [in] */
376 HRESULT WINAPI StorageImpl_Revert(
379 HRESULT WINAPI StorageImpl_DestroyElement(
381 const OLECHAR* pwcsName); /* [string][in] */
383 HRESULT WINAPI StorageImpl_SetElementTimes(
385 const OLECHAR* pwcsName, /* [string][in] */
386 const FILETIME* pctime, /* [in] */
387 const FILETIME* patime, /* [in] */
388 const FILETIME* pmtime); /* [in] */
390 HRESULT WINAPI StorageImpl_SetStateBits(
392 DWORD grfStateBits, /* [in] */
393 DWORD grfMask); /* [in] */
395 HRESULT WINAPI StorageImpl_Stat(IStorage* iface,
396 STATSTG* pstatstg, /* [out] */
397 DWORD grfStatFlag); /* [in] */
399 void StorageImpl_Destroy(
400 StorageBaseImpl* This);
402 HRESULT StorageImpl_Construct(
411 BOOL StorageImpl_ReadBigBlock(
416 BOOL StorageImpl_WriteBigBlock(
421 void* StorageImpl_GetROBigBlock(
425 void* StorageImpl_GetBigBlock(
429 void StorageImpl_ReleaseBigBlock(
433 ULONG StorageImpl_GetNextFreeBigBlock(
436 void StorageImpl_FreeBigBlock(
440 HRESULT StorageImpl_GetNextBlockInChain(
443 ULONG* nextBlockIndex);
445 void StorageImpl_SetNextBlockInChain(
450 HRESULT StorageImpl_LoadFileHeader(
453 void StorageImpl_SaveFileHeader(
456 BOOL StorageImpl_ReadProperty(
459 StgProperty* buffer);
461 BOOL StorageImpl_WriteProperty(
464 StgProperty* buffer);
466 BlockChainStream* Storage32Impl_SmallBlocksToBigBlocks(
468 SmallBlockChainStream** ppsbChain);
470 ULONG Storage32Impl_GetNextExtendedBlock(StorageImpl* This,
473 void Storage32Impl_AddBlockDepot(StorageImpl* This,
476 ULONG Storage32Impl_AddExtBlockDepot(StorageImpl* This);
478 ULONG Storage32Impl_GetExtDepotBlock(StorageImpl* This,
481 void Storage32Impl_SetExtDepotBlock(StorageImpl* This,
484 /****************************************************************************
485 * Storage32InternalImpl definitions.
487 * Definition of the implementation structure for the IStorage32 interface.
488 * This one implements the IStorage32 interface for storage that are
489 * inside another storage.
491 struct StorageInternalImpl
493 struct StorageBaseImpl base;
496 * There is no specific data for this class.
501 * Method definitions for the Storage32InternalImpl class.
503 StorageInternalImpl* StorageInternalImpl_Construct(
504 StorageImpl* ancestorStorage,
505 ULONG rootTropertyIndex);
507 void StorageInternalImpl_Destroy(
508 StorageBaseImpl* This);
510 HRESULT WINAPI StorageInternalImpl_Commit(
512 DWORD grfCommitFlags); /* [in] */
514 HRESULT WINAPI StorageInternalImpl_Revert(
518 /****************************************************************************
519 * IEnumSTATSTGImpl definitions.
521 * Definition of the implementation structure for the IEnumSTATSTGImpl interface.
522 * This class allows iterating through the content of a storage and to find
523 * specific items inside it.
525 struct IEnumSTATSTGImpl
527 IEnumSTATSTGVtbl *lpVtbl; /* Needs to be the first item in the struct
528 * since we want to cast this in a IEnumSTATSTG pointer */
530 ULONG ref; /* Reference count */
531 StorageImpl* parentStorage; /* Reference to the parent storage */
532 ULONG firstPropertyNode; /* Index of the root of the storage to enumerate */
535 * The current implementation of the IEnumSTATSTGImpl class uses a stack
536 * to walk the property sets to get the content of a storage. This stack
537 * is implemented by the following 3 data members
543 #define ENUMSTATSGT_SIZE_INCREMENT 10
547 * Method definitions for the IEnumSTATSTGImpl class.
549 HRESULT WINAPI IEnumSTATSTGImpl_QueryInterface(
554 ULONG WINAPI IEnumSTATSTGImpl_AddRef(
555 IEnumSTATSTG* iface);
557 ULONG WINAPI IEnumSTATSTGImpl_Release(
558 IEnumSTATSTG* iface);
560 HRESULT WINAPI IEnumSTATSTGImpl_Next(
564 ULONG* pceltFetched);
566 HRESULT WINAPI IEnumSTATSTGImpl_Skip(
570 HRESULT WINAPI IEnumSTATSTGImpl_Reset(
571 IEnumSTATSTG* iface);
573 HRESULT WINAPI IEnumSTATSTGImpl_Clone(
575 IEnumSTATSTG** ppenum);
577 IEnumSTATSTGImpl* IEnumSTATSTGImpl_Construct(
579 ULONG firstPropertyNode);
581 void IEnumSTATSTGImpl_Destroy(
582 IEnumSTATSTGImpl* This);
584 void IEnumSTATSTGImpl_PushSearchNode(
585 IEnumSTATSTGImpl* This,
588 ULONG IEnumSTATSTGImpl_PopSearchNode(
589 IEnumSTATSTGImpl* This,
592 ULONG IEnumSTATSTGImpl_FindProperty(
593 IEnumSTATSTGImpl* This,
594 const OLECHAR* lpszPropName,
595 StgProperty* buffer);
597 INT IEnumSTATSTGImpl_FindParentProperty(
598 IEnumSTATSTGImpl *This,
600 StgProperty *currentProperty,
604 /****************************************************************************
605 * StgStreamImpl definitions.
607 * This class imlements the IStream32 inteface and represents a stream
608 * located inside a storage object.
612 IStreamVtbl *lpVtbl; /* Needs to be the first item in the struct
613 * since we want to cast this in a IStream pointer */
621 * Storage that is the parent(owner) of the stream
623 StorageBaseImpl* parentStorage;
626 * Access mode of this stream.
631 * Index of the property that owns (points to) this stream.
636 * Helper variable that contains the size of the stream
638 ULARGE_INTEGER streamSize;
641 * This is the current position of the cursor in the stream
643 ULARGE_INTEGER currentPosition;
646 * The information in the stream is represented by a chain of small blocks
647 * or a chain of large blocks. Depending on the case, one of the two
648 * following variabled points to that information.
650 BlockChainStream* bigBlockChain;
651 SmallBlockChainStream* smallBlockChain;
655 * Method definition for the StgStreamImpl class.
657 StgStreamImpl* StgStreamImpl_Construct(
658 StorageBaseImpl* parentStorage,
660 ULONG ownerProperty);
662 void StgStreamImpl_Destroy(
663 StgStreamImpl* This);
665 void StgStreamImpl_OpenBlockChain(
666 StgStreamImpl* This);
668 HRESULT WINAPI StgStreamImpl_QueryInterface(
670 REFIID riid, /* [in] */
671 void** ppvObject); /* [iid_is][out] */
673 ULONG WINAPI StgStreamImpl_AddRef(
676 ULONG WINAPI StgStreamImpl_Release(
679 HRESULT WINAPI StgStreamImpl_Read(
681 void* pv, /* [length_is][size_is][out] */
683 ULONG* pcbRead); /* [out] */
685 HRESULT WINAPI StgStreamImpl_Write(
687 const void* pv, /* [size_is][in] */
689 ULONG* pcbWritten); /* [out] */
691 HRESULT WINAPI StgStreamImpl_Seek(
693 LARGE_INTEGER dlibMove, /* [in] */
694 DWORD dwOrigin, /* [in] */
695 ULARGE_INTEGER* plibNewPosition); /* [out] */
697 HRESULT WINAPI StgStreamImpl_SetSize(
699 ULARGE_INTEGER libNewSize); /* [in] */
701 HRESULT WINAPI StgStreamImpl_CopyTo(
703 IStream* pstm, /* [unique][in] */
704 ULARGE_INTEGER cb, /* [in] */
705 ULARGE_INTEGER* pcbRead, /* [out] */
706 ULARGE_INTEGER* pcbWritten); /* [out] */
708 HRESULT WINAPI StgStreamImpl_Commit(
710 DWORD grfCommitFlags); /* [in] */
712 HRESULT WINAPI StgStreamImpl_Revert(
715 HRESULT WINAPI StgStreamImpl_LockRegion(
717 ULARGE_INTEGER libOffset, /* [in] */
718 ULARGE_INTEGER cb, /* [in] */
719 DWORD dwLockType); /* [in] */
721 HRESULT WINAPI StgStreamImpl_UnlockRegion(
723 ULARGE_INTEGER libOffset, /* [in] */
724 ULARGE_INTEGER cb, /* [in] */
725 DWORD dwLockType); /* [in] */
727 HRESULT WINAPI StgStreamImpl_Stat(
729 STATSTG* pstatstg, /* [out] */
730 DWORD grfStatFlag); /* [in] */
732 HRESULT WINAPI StgStreamImpl_Clone(
734 IStream** ppstm); /* [out] */
737 /********************************************************************************
738 * The StorageUtl_ functions are miscelaneous utility functions. Most of which are
739 * abstractions used to read values from file buffers without having to worry
742 void StorageUtl_ReadWord(void* buffer, ULONG offset, WORD* value);
743 void StorageUtl_WriteWord(void* buffer, ULONG offset, WORD value);
744 void StorageUtl_ReadDWord(void* buffer, ULONG offset, DWORD* value);
745 void StorageUtl_WriteDWord(void* buffer, ULONG offset, DWORD value);
746 void StorageUtl_ReadGUID(void* buffer, ULONG offset, GUID* value);
747 void StorageUtl_WriteGUID(void* buffer, ULONG offset, GUID* value);
748 void StorageUtl_CopyPropertyToSTATSTG(STATSTG* destination,
752 /****************************************************************************
753 * BlockChainStream definitions.
755 * The BlockChainStream class is a utility class that is used to create an
756 * abstraction of the big block chains in the storage file.
758 struct BlockChainStream
760 StorageImpl* parentStorage;
761 ULONG* headOfStreamPlaceHolder;
762 ULONG ownerPropertyIndex;
763 ULONG lastBlockNoInSequence;
764 ULONG lastBlockNoInSequenceIndex;
770 * Methods for the BlockChainStream class.
772 BlockChainStream* BlockChainStream_Construct(
773 StorageImpl* parentStorage,
774 ULONG* headOfStreamPlaceHolder,
775 ULONG propertyIndex);
777 void BlockChainStream_Destroy(
778 BlockChainStream* This);
780 ULONG BlockChainStream_GetHeadOfChain(
781 BlockChainStream* This);
783 BOOL BlockChainStream_ReadAt(
784 BlockChainStream* This,
785 ULARGE_INTEGER offset,
790 BOOL BlockChainStream_WriteAt(
791 BlockChainStream* This,
792 ULARGE_INTEGER offset,
795 ULONG* bytesWritten);
797 BOOL BlockChainStream_SetSize(
798 BlockChainStream* This,
799 ULARGE_INTEGER newSize);
801 ULARGE_INTEGER BlockChainStream_GetSize(
802 BlockChainStream* This);
804 ULONG BlockChainStream_GetCount(
805 BlockChainStream* This);
807 /****************************************************************************
808 * SmallBlockChainStream definitions.
810 * The SmallBlockChainStream class is a utility class that is used to create an
811 * abstraction of the small block chains in the storage file.
813 struct SmallBlockChainStream
815 StorageImpl* parentStorage;
816 ULONG ownerPropertyIndex;
820 * Methods of the SmallBlockChainStream class.
822 SmallBlockChainStream* SmallBlockChainStream_Construct(
823 StorageImpl* parentStorage,
824 ULONG propertyIndex);
826 void SmallBlockChainStream_Destroy(
827 SmallBlockChainStream* This);
829 ULONG SmallBlockChainStream_GetHeadOfChain(
830 SmallBlockChainStream* This);
832 HRESULT SmallBlockChainStream_GetNextBlockInChain(
833 SmallBlockChainStream* This,
835 ULONG* nextBlockIndex);
837 void SmallBlockChainStream_SetNextBlockInChain(
838 SmallBlockChainStream* This,
842 void SmallBlockChainStream_FreeBlock(
843 SmallBlockChainStream* This,
846 ULONG SmallBlockChainStream_GetNextFreeBlock(
847 SmallBlockChainStream* This);
849 BOOL SmallBlockChainStream_ReadAt(
850 SmallBlockChainStream* This,
851 ULARGE_INTEGER offset,
856 BOOL SmallBlockChainStream_WriteAt(
857 SmallBlockChainStream* This,
858 ULARGE_INTEGER offset,
861 ULONG* bytesWritten);
863 BOOL SmallBlockChainStream_SetSize(
864 SmallBlockChainStream* This,
865 ULARGE_INTEGER newSize);
867 ULARGE_INTEGER SmallBlockChainStream_GetSize(
868 SmallBlockChainStream* This);
870 ULONG SmallBlockChainStream_GetCount(
871 SmallBlockChainStream* This);
874 #endif /* __STORAGE32_H__ */