diff options
author | Mathias Bauer <mba@openoffice.org> | 2001-11-13 09:31:51 +0000 |
---|---|---|
committer | Mathias Bauer <mba@openoffice.org> | 2001-11-13 09:31:51 +0000 |
commit | 3406cc852d8fac3aa1fedadd5ce936d72ef681eb (patch) | |
tree | c17c1c1c4882d52f5af67600b7e707cdb950be4e /sot/inc | |
parent | 7f4eb4e70df6b1cef541447e57d7cfd0dc1231a5 (diff) |
#92268#: support individually encrypted streams
Diffstat (limited to 'sot/inc')
-rw-r--r-- | sot/inc/stg.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sot/inc/stg.hxx b/sot/inc/stg.hxx index 57a1709c9c47..fc884630cbea 100644 --- a/sot/inc/stg.hxx +++ b/sot/inc/stg.hxx @@ -2,9 +2,9 @@ * * $RCSfile: stg.hxx,v $ * - * $Revision: 1.14 $ + * $Revision: 1.15 $ * - * last change: $Author: mba $ $Date: 2001-08-21 10:51:05 $ + * last change: $Author: mba $ $Date: 2001-11-13 10:28:28 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -153,7 +153,7 @@ public: virtual BOOL Revert() = 0; virtual BaseStorageStream* OpenStream( const String & rEleName, StreamMode = STREAM_STD_READWRITE, - BOOL bDirect = TRUE ) = 0; + BOOL bDirect = TRUE, const ByteString* pKey=0 ) = 0; virtual BaseStorage* OpenStorage( const String & rEleName, StreamMode = STREAM_STD_READWRITE, BOOL bDirect = FALSE ) = 0; @@ -250,7 +250,7 @@ public: virtual BOOL Revert(); virtual BaseStorageStream* OpenStream( const String & rEleName, StreamMode = STREAM_STD_READWRITE, - BOOL bDirect = TRUE ); + BOOL bDirect = TRUE, const ByteString* pKey=0 ); virtual BaseStorage* OpenStorage( const String & rEleName, StreamMode = STREAM_STD_READWRITE, BOOL bDirect = FALSE ); @@ -286,7 +286,7 @@ protected: ~UCBStorageStream(); public: TYPEINFO(); - UCBStorageStream( const String& rName, StreamMode nMode, BOOL bDirect ); + UCBStorageStream( const String& rName, StreamMode nMode, BOOL bDirect, const ByteString* pKey=0 ); UCBStorageStream( UCBStorageStream_Impl* ); virtual ULONG Read( void * pData, ULONG nSize ); @@ -352,7 +352,7 @@ public: virtual BOOL Revert(); virtual BaseStorageStream* OpenStream( const String & rEleName, StreamMode = STREAM_STD_READWRITE, - BOOL bDirect = TRUE ); + BOOL bDirect = TRUE, const ByteString* pKey=0 ); virtual BaseStorage* OpenStorage( const String & rEleName, StreamMode = STREAM_STD_READWRITE, BOOL bDirect = FALSE ); |