Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
General
»
[SOLVED] how to ranslate this macro
Free Pascal
Website
Downloads
Wiki
Documentation
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Documentation (RTL/FCL/LCL)
Bugtracker
CCR Bugs
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
AVRPascal – free code edi...
by
ackarwow
[
Today
at 08:45:53 pm]
Secondary Installation fo...
by
TRon
[
Today
at 08:21:03 pm]
Problem with Hints
by
lainz
[
Today
at 08:14:54 pm]
Error when attempting to ...
by
dsiders
[
Today
at 08:01:39 pm]
Developing a Kernel Modul...
by
MarkMLl
[
Today
at 03:53:56 pm]
ZDataset.Locate + loParti...
by
tintinux
[
Today
at 03:19:10 pm]
The Form cannot be resize...
by
daxnet
[
Today
at 02:51:42 pm]
Api/component pack for Ra...
by
MarkMLl
[
Today
at 02:15:57 pm]
kernel 6.8 and checking s...
by
MarkMLl
[
Today
at 02:13:41 pm]
storing string
by
Thaddy
[
Today
at 09:38:41 am]
Random SnowFlakes:
by
zamtmn
[
Today
at 09:23:12 am]
OverLapping Snowflake Fra...
by
Boleeman
[
Today
at 09:04:01 am]
[SOLVED] StringGrid color...
by
Vodnik
[
Today
at 08:26:44 am]
YM Player
by
TRon
[
Today
at 02:32:16 am]
How single procedure ends...
by
Marion
[
Today
at 01:57:43 am]
Python4Lazarus Undefined ...
by
Grew
[
Today
at 01:57:41 am]
ct2laz - convertor betwee...
by
Sharfik
[
Today
at 01:26:03 am]
Amigo programming languag...
by
maurog
[December 02, 2024, 11:19:44 pm]
[SOLVED] How to document ...
by
korba812
[December 02, 2024, 10:49:39 pm]
How do you know wich vers...
by
Warfley
[December 02, 2024, 08:32:11 pm]
Unable to find file "date...
by
Cumberland
[December 02, 2024, 08:27:29 pm]
Common File Dialogs Have ...
by
rvk
[December 02, 2024, 07:33:14 pm]
LazMapView - adding a sca...
by
alpine
[December 02, 2024, 05:26:28 pm]
[SOLVED] Howto use a DEFI...
by
tintinux
[December 02, 2024, 04:55:13 pm]
Strange memory allocation...
by
MathMan
[December 02, 2024, 03:40:40 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [SOLVED] how to ranslate this macro (Read 564 times)
Key-Real
Sr. Member
Posts: 372
[SOLVED] how to ranslate this macro
«
on:
June 21, 2024, 01:52:52 pm »
how to ranslate this macro in pascal?
Code: Pascal
[Select]
[+]
[-]
#define limitRange
(
x
,
l
,
h
)
(
(
x
)
=
(
(
x
)
<
(
l
)
?
(
l
)
:
(
x
)
>
(
h
)
?
(
h
)
:
(
x
)
)
)
«
Last Edit: June 21, 2024, 02:25:27 pm by Key-Real
»
Logged
Demo Scene,
FlyTracker
,
FPC for PlayStation 1
Fibonacci
Hero Member
Posts: 594
Internal Error Hunter
Re: how to ranslate this macro
«
Reply #1 on:
June 21, 2024, 02:08:23 pm »
Code: Pascal
[Select]
[+]
[-]
procedure
limitRange
(
var
x
:
integer
;
l
,
h
:
integer
)
;
inline
;
begin
if
x < l
then
x
:
=
l
else
if
x > h
then
x
:
=
h
;
end
;
Logged
Bart
Hero Member
Posts: 5465
Re: how to ranslate this macro
«
Reply #2 on:
June 21, 2024, 02:10:44 pm »
We have EnsureRange() in Math unit for that?
Bart
Logged
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
General
»
[SOLVED] how to ranslate this macro
TinyPortal
© 2005-2018