Hello,
I'm dealing with the following code (from ZenGL library), targeting OSX
---
{$mode delphi}
procedure m_SinCos( Angle : Single; out s, c : Single ); assembler;
asm
FLD Angle
FSINCOS
FSTP [EDX]
FSTP [EAX]
end;
var
s,c: single;
begin
m_SinCos(0,s,c);
end.
On Tue, 3 May 2016, Graeme Geldenhuys wrote:
Hi,
Is the getopts unit deprecated or not recommended for usage?
It is not deprecated.
The reason
I ask is because I see CustApp has similar functionality to the getopts
unit, but the custapp has it’s own implementation - it doesn’t use the
get
Hi,
Is the getopts unit deprecated or not recommended for usage? The reason
I ask is because I see CustApp has similar functionality to the getopts
unit, but the custapp has it’s own implementation - it doesn’t use the
getopts unit at all.
Or am I not understanding the purpose of the getopts unit