2010-01-25 08:59:44 -05:00
|
|
|
{
|
|
|
|
This file is part of the Mufasa Macro Library (MML)
|
|
|
|
Copyright (c) 2009 by Raymond van Venetië and Merlijn Wajer
|
|
|
|
|
|
|
|
MML is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
MML is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with MML. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
See the file COPYING, included in this distribution,
|
|
|
|
for details about the copyright.
|
|
|
|
|
|
|
|
File.inc for the Mufasa Macro Library
|
|
|
|
}
|
|
|
|
|
2010-04-03 09:10:13 -04:00
|
|
|
function ps_CreateFile(const Path: string): Integer; extdecl;
|
2010-01-25 08:59:44 -05:00
|
|
|
begin
|
|
|
|
Result := CurrThread.Client.MFiles.CreateFile(Path);
|
|
|
|
end;
|
|
|
|
|
2010-04-03 09:10:13 -04:00
|
|
|
function ps_OpenFile(const Path: string; Shared: Boolean): Integer; extdecl;
|
2010-01-25 08:59:44 -05:00
|
|
|
begin
|
|
|
|
Result := CurrThread.Client.MFiles.OpenFile(Path, Shared);
|
|
|
|
end;
|
|
|
|
|
2010-04-03 09:10:13 -04:00
|
|
|
function ps_RewriteFile(const Path: string; Shared: Boolean): Integer; extdecl;
|
2010-01-25 08:59:44 -05:00
|
|
|
begin
|
|
|
|
Result := CurrThread.Client.MFiles.RewriteFile(Path, Shared);
|
|
|
|
end;
|
|
|
|
|
2010-01-28 18:34:03 -05:00
|
|
|
procedure ps_CloseFile(FileNum: Integer); extdecl;
|
2010-01-25 08:59:44 -05:00
|
|
|
begin
|
|
|
|
CurrThread.Client.MFiles.CloseFile(FileNum);
|
|
|
|
end;
|
|
|
|
|
2010-01-28 18:34:03 -05:00
|
|
|
function ps_EndOfFile(FileNum: Integer): Boolean; extdecl;
|
2010-01-25 08:59:44 -05:00
|
|
|
begin
|
|
|
|
Result := CurrThread.Client.MFiles.EndOfFile(FileNum);
|
|
|
|
end;
|
|
|
|
|
2010-01-28 18:34:03 -05:00
|
|
|
function ps_FileSize(FileNum: Integer): LongInt; extdecl;
|
2010-01-25 08:59:44 -05:00
|
|
|
begin
|
|
|
|
Result := CurrThread.Client.MFiles.FileSizeMuf(FileNum);
|
|
|
|
end;
|
|
|
|
|
2010-04-18 17:26:21 -04:00
|
|
|
function ps_ReadFileString(FileNum: Integer; var s: string; x: Integer): Boolean; extdecl;
|
2010-01-25 08:59:44 -05:00
|
|
|
begin
|
|
|
|
Result := CurrThread.Client.MFiles.ReadFileString(FileNum, s, x);
|
|
|
|
end;
|
|
|
|
|
2010-01-28 18:34:03 -05:00
|
|
|
function ps_WriteFileString(FileNum: Integer; s: string): Boolean; extdecl;
|
2010-01-25 08:59:44 -05:00
|
|
|
begin
|
|
|
|
Result := CurrThread.Client.MFiles.WriteFileString(FileNum, s);
|
|
|
|
end;
|
2010-01-28 18:34:03 -05:00
|
|
|
function ps_SetFileCharPointer(FileNum, cChars, Origin: Integer): Integer; extdecl;
|
2010-01-25 08:59:44 -05:00
|
|
|
begin
|
|
|
|
Result := CurrThread.Client.MFiles.SetFileCharPointer(Filenum, cChars, Origin);
|
|
|
|
end;
|
2010-01-28 18:34:03 -05:00
|
|
|
function ps_FilePointerPos(FileNum: Integer): Integer; extdecl;
|
2010-01-25 08:59:44 -05:00
|
|
|
begin
|
|
|
|
Result := CurrThread.Client.MFiles.FilePointerPos(FileNum);
|
|
|
|
end;
|
2010-04-07 17:04:25 -04:00
|
|
|
function ps_FileExists ( const FileName : string ) : Boolean;extdecl;
|
2010-01-26 14:38:27 -05:00
|
|
|
begin
|
|
|
|
result := FileExists(FileName);
|
|
|
|
end;
|
2010-01-28 18:34:03 -05:00
|
|
|
function ps_DirectoryExists ( const DirectoryName : string ) : Boolean; extdecl;
|
2010-01-26 14:38:27 -05:00
|
|
|
begin
|
|
|
|
result := DirectoryExists(DirectoryName);
|
|
|
|
end;
|
2010-02-14 15:21:03 -05:00
|
|
|
function ps_CreateDirectory( const DirectoryName : string) : boolean; extdecl;
|
|
|
|
begin
|
|
|
|
result := CreateDir(directoryName);
|
|
|
|
end;
|
2010-01-28 18:34:03 -05:00
|
|
|
|
2010-04-03 09:10:13 -04:00
|
|
|
procedure ps_WriteINI(const Section, KeyName, NewString, FileName: string);extdecl;
|
2010-01-28 18:34:03 -05:00
|
|
|
var
|
|
|
|
tempini : TIniFile;
|
|
|
|
begin;
|
|
|
|
tempini := TIniFile.Create(FileName,True);
|
|
|
|
tempini.WriteString(Section,keyname,newstring);
|
|
|
|
tempini.free;
|
|
|
|
end;
|
|
|
|
|
2010-04-03 09:10:13 -04:00
|
|
|
function ps_ReadINI(const Section, KeyName, FileName: string): string;extdecl;
|
2010-01-28 18:34:03 -05:00
|
|
|
var
|
|
|
|
tempini : TIniFile;
|
|
|
|
begin;
|
|
|
|
tempini := TIniFile.Create(FileName,True);
|
|
|
|
Result := tempini.ReadString(section,keyname,'');
|
|
|
|
tempini.free;
|
|
|
|
end;
|
|
|
|
|
2010-04-03 09:10:13 -04:00
|
|
|
procedure ps_DeleteINI(const Section, KeyName, FileName: string); extdecl;
|
2010-01-28 18:34:03 -05:00
|
|
|
var
|
|
|
|
tempini : TIniFile;
|
|
|
|
begin;
|
|
|
|
tempini := TIniFile.Create(FileName,True);
|
|
|
|
if KeyName = '' then
|
|
|
|
tempini.EraseSection(Section)
|
|
|
|
else
|
|
|
|
Tempini.DeleteKey(section,keyname);
|
|
|
|
tempini.free;
|
|
|
|
end;
|