some features of the API will stop working with Skype for desktop. For example, delivery of chat messages using the API will cease to work. However, we will be extending support for two of the most widely used features – call recording and compatibility with hardware devices – until we determine alternative options or retire the current solution.
function way(const matrix:massive):boolean;
Кто то может просто дать рабочий и протестированный код, который работает у вас?
procedure Sort(var a,b,c: Integer);
var
a1,b1,c1: Integer;
begin
a1:=a; b1:=b; c1:=c;
if (a<=b) and (a<=c) and (b<=c) then begin a:=a1;b:=b1;c:=c1; end else
if (a<=b) and (a<=c) and (c<=b) then begin a:=a1;b:=c1;c:=b1; end else
if (b<=a) and (b<=c) and (a<=c) then begin a:=b1;b:=a1;c:=c1; end else
if (b<=a) and (b<=c) and (c<=a) then begin a:=b1;b:=c1;c:=a1; end else
if (c<=a) and (c<=b) and (a<=b) then begin a:=c1;b:=a1;c:=b1; end else
if (c<=a) and (c<=b) and (b<=a) then begin a:=c1;b:=b1;c:=a1; end;
end;
var
out: TFileStream;
in: TMemoryStream;
i: Integer;
begin
in := TMemoryStream.Create;
out := TFileStream.Create(...);
try
for i := 0 to files_count - 1 do begin
in.Clear;
in.LoadFromFile(....);
out.WriteBuffer(in.Memory^, in.Size);
end;
finally
in.Free;
out.Free;
end;
end;