mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-21 08:45:06 -05:00
Filewall can now hook into DeleteFile.
This commit is contained in:
parent
5e7cf81f13
commit
e60a542c45
@ -103,7 +103,7 @@ end;
|
|||||||
|
|
||||||
function ps_DeleteFile(const Filename: string): Boolean; extdecl;
|
function ps_DeleteFile(const Filename: string): Boolean; extdecl;
|
||||||
begin
|
begin
|
||||||
Result := DeleteFileUTF8(Filename);
|
Result := CurrThread.Client.MFiles.DeleteFile(Filename);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure ps_WriteINI(const Section, KeyName, NewString, FileName: string);extdecl;
|
procedure ps_WriteINI(const Section, KeyName, NewString, FileName: string);extdecl;
|
||||||
|
@ -45,6 +45,7 @@ type
|
|||||||
function OpenFile(Path: string; Shared: Boolean): Integer;
|
function OpenFile(Path: string; Shared: Boolean): Integer;
|
||||||
function RewriteFile(Path: string; Shared: Boolean): Integer;
|
function RewriteFile(Path: string; Shared: Boolean): Integer;
|
||||||
function AppendFile(Path: string): Integer;
|
function AppendFile(Path: string): Integer;
|
||||||
|
function DeleteFile(Filename: string): Boolean;
|
||||||
procedure CloseFile(FileNum: Integer);
|
procedure CloseFile(FileNum: Integer);
|
||||||
function EndOfFile(FileNum: Integer): Boolean;
|
function EndOfFile(FileNum: Integer): Boolean;
|
||||||
function FileSizeMuf(FileNum: Integer): LongInt;
|
function FileSizeMuf(FileNum: Integer): LongInt;
|
||||||
@ -334,6 +335,21 @@ begin
|
|||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
|
function TMFiles.DeleteFile(Filename: string): Boolean;
|
||||||
|
var
|
||||||
|
Continue : Boolean;
|
||||||
|
begin
|
||||||
|
if Assigned(WriteFileEvent) then
|
||||||
|
begin;
|
||||||
|
Continue := true;
|
||||||
|
WriteFileEvent(Self, Filename, continue);
|
||||||
|
if not Continue then
|
||||||
|
exit(False);
|
||||||
|
end;
|
||||||
|
Result := DeleteFileUTF8(Filename);
|
||||||
|
end;
|
||||||
|
|
||||||
{/\
|
{/\
|
||||||
Free's the given File at the given index.
|
Free's the given File at the given index.
|
||||||
/\}
|
/\}
|
||||||
|
Loading…
Reference in New Issue
Block a user