mirror of
https://github.com/moparisthebest/Simba
synced 2025-01-31 15:20:24 -05:00
Added s0me log st00f + new vers number.
This commit is contained in:
parent
a7eccb53d2
commit
850620d946
@ -46,7 +46,7 @@ uses
|
|||||||
CastaliaSimplePasPar, v_AutoCompleteForm, PSDump;
|
CastaliaSimplePasPar, v_AutoCompleteForm, PSDump;
|
||||||
|
|
||||||
const
|
const
|
||||||
SimbaVersion = 630;
|
SimbaVersion = 632;
|
||||||
|
|
||||||
type
|
type
|
||||||
|
|
||||||
|
@ -155,3 +155,11 @@ function ps_floor(e : extended) : integer; extdecl;
|
|||||||
begin;
|
begin;
|
||||||
result := floor(e);
|
result := floor(e);
|
||||||
end;
|
end;
|
||||||
|
function ps_logn(base, x : extended): extended;extdecl;
|
||||||
|
begin
|
||||||
|
result := logn(base,x);
|
||||||
|
end;
|
||||||
|
function ps_ln(x : extended) : extended;extdecl;
|
||||||
|
begin
|
||||||
|
result := ln(x);
|
||||||
|
end;
|
||||||
|
@ -69,6 +69,8 @@ AddFunction(@ps_DecEx,'procedure DecEx(var x : integer; Decrease : integer);');
|
|||||||
AddFunction(@ps_BinCoe,'function BinCoe(a, b: LongInt): Extended;');
|
AddFunction(@ps_BinCoe,'function BinCoe(a, b: LongInt): Extended;');
|
||||||
AddFunction(@ps_FixD,'function FixD(Degrees : extended) : Extended;');
|
AddFunction(@ps_FixD,'function FixD(Degrees : extended) : Extended;');
|
||||||
AddFunction(@ps_InRange,'function InRange(const value,min,max : integer) : boolean;');
|
AddFunction(@ps_InRange,'function InRange(const value,min,max : integer) : boolean;');
|
||||||
|
AddFunction(@ps_logn,'function logn(base, x : extended): extended;');
|
||||||
|
AddFunction(@ps_ln,'function ln(x : extended) : extended;');
|
||||||
|
|
||||||
{window}
|
{window}
|
||||||
SetCurrSection('Window');
|
SetCurrSection('Window');
|
||||||
|
Loading…
Reference in New Issue
Block a user