mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-19 05:09:07 +02:00
* small reorganisation of ansistring/unicodestring routine declarations, so
they are the same as in the unicode branch (to more easily apply patches) git-svn-id: branches/cpstrrtl@25073 -
This commit is contained in:
parent
b1c10cff02
commit
c604e5af17
@ -77,14 +77,16 @@ Type
|
||||
TFileSearchOption = (sfoImplicitCurrentDir,sfoStripQuotes);
|
||||
TFileSearchOptions = set of TFileSearchOption;
|
||||
|
||||
Function FileOpen (Const FileName : rawbytestring; Mode : Integer) : THandle;
|
||||
Function FileOpen (Const FileName : unicodestring; Mode : Integer) : THandle;
|
||||
Function FileCreate (Const FileName : RawByteString) : THandle;
|
||||
Function FileCreate (Const FileName : RawByteString; Rights : Integer) : THandle;
|
||||
Function FileCreate (Const FileName : RawByteString; ShareMode : Integer; Rights : Integer) : THandle;
|
||||
Function FileCreate (Const FileName : UnicodeString) : THandle;
|
||||
Function FileCreate (Const FileName : UnicodeString; Rights : Integer) : THandle;
|
||||
Function FileCreate (Const FileName : UnicodeString; ShareMode : Integer; Rights : Integer) : THandle;
|
||||
|
||||
Function FileOpen (Const FileName : RawByteString; Mode : Integer) : THandle;
|
||||
Function FileCreate (Const FileName : RawByteString) : THandle;
|
||||
Function FileCreate (Const FileName : RawByteString; Rights : Integer) : THandle;
|
||||
Function FileCreate (Const FileName : RawByteString; ShareMode : Integer; Rights : Integer) : THandle;
|
||||
|
||||
Function FileRead (Handle : THandle; out Buffer; Count : longint) : Longint;
|
||||
Function FileWrite (Handle : THandle; const Buffer; Count : Longint) : Longint;
|
||||
Function FileSeek (Handle : THandle; FOffset, Origin: Longint) : Longint;
|
||||
|
Loading…
Reference in New Issue
Block a user