Преглед изворни кода

* 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 -

Jonas Maebe пре 12 година
родитељ
комит
c604e5af17
1 измењених фајлова са 6 додато и 4 уклоњено
  1. 6 4
      rtl/objpas/sysutils/filutilh.inc

+ 6 - 4
rtl/objpas/sysutils/filutilh.inc

@@ -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;