diff options
author | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2009-07-23 19:01:43 +0000 |
---|---|---|
committer | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2009-07-23 19:01:43 +0000 |
commit | c8eea1987096ddee1da4f153ae8f70c86d35451d (patch) | |
tree | 965588c80054bc789819bc0e96c892176c4beb7a | |
parent | 21fbd02eb59292a9e1bf2ab785de8a2e7aac1560 (diff) | |
download | usdx-c8eea1987096ddee1da4f153ae8f70c86d35451d.tar.gz usdx-c8eea1987096ddee1da4f153ae8f70c86d35451d.tar.xz usdx-c8eea1987096ddee1da4f153ae8f70c86d35451d.zip |
- IFilesystem.CreateFileStream() removed
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@1883 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rw-r--r-- | unicode/src/base/UFilesystem.pas | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/unicode/src/base/UFilesystem.pas b/unicode/src/base/UFilesystem.pas index 1cfb6837..5f7e8c34 100644 --- a/unicode/src/base/UFilesystem.pas +++ b/unicode/src/base/UFilesystem.pas @@ -138,12 +138,6 @@ type function SetCurrentDir(const Dir: IPath): Boolean; {** - * Opens a file stream for FileName with Mode. Close the stream after usage - * with THandleStream.Free(). - *} - function CreateFileStream(const FileName: IPath; Mode: Word): THandleStream; - - {** * Returns true if the filesystem is case-sensitive. *} function IsCaseSensitive(): boolean; @@ -195,8 +189,6 @@ type function GetCurrentDir: IPath; function SetCurrentDir(const Dir: IPath): Boolean; - function CreateFileStream(const FileName: IPath; Mode: Word): THandleStream; - function IsCaseSensitive(): boolean; end; @@ -221,11 +213,6 @@ begin Result := FileSystem_Singleton; end; -function TFileSystemImpl.CreateFileStream(const FileName: IPath; Mode: Word): THandleStream; -begin - Result := TBinaryFileStream.Create(FileName, Mode); -end; - function TFileSystemImpl.FileFind(const FilePattern: IPath; Attr: Integer): IFileIterator; begin Result := TFileIterator.Create(FilePattern, Attr); |