Skip to content

Commit

Permalink
Issue #307
Browse files Browse the repository at this point in the history
Fixed: wrong parameters order in MailRuCloudWFX.FsPutFile()
  • Loading branch information
pozitronik committed Dec 27, 2023
1 parent ae0f109 commit a997396
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MailRuCloud.dpr
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ end;

function FsPutFileW(LocalName, RemoteName: PWideChar; CopyFlags: Integer): Integer; stdcall;
begin
Exit(MailRuCloudWFX.FsPutFile(RemoteName, LocalName, CopyFlags));
Exit(MailRuCloudWFX.FsPutFile(LocalName, RemoteName, CopyFlags));
end;

function FsDeleteFileW(RemoteName: PWideChar): Bool; stdcall; //Удаление файла из файловой системы плагина
Expand Down

0 comments on commit a997396

Please sign in to comment.