Difference between revisions of "Register"

From Free Pascal wiki
Jump to navigationJump to search
(Created page with "{{register}} <br> Back to the reserved words <br> The modifier <b> register </b> belongs to the calling conventions of internal and external subroutines....")
 
Line 22: Line 22:
 
<br>
 
<br>
 
<br>
 
<br>
 
+
--[[User:Mahdix18|Mahdi18]]
 
{{AutoCategory}}
 
{{AutoCategory}}

Revision as of 18:06, 7 January 2018

Deutsch (de) English (en) русский (ru)

Back to the reserved words
The modifier register belongs to the calling conventions of internal and external subroutines.
The modifier register is for compatibility with Delphi.
The modifier has been supported since FPC 1.9.x.
The modifier register is used to call the first three parameters in the register.

Example:

function subTest: string; [register];
begin
   subTest: = 'abc';
end;


Example 2:

function funcTest (strTestdaten: Pchar): LongWord; register; external 'Test.dll';



--Mahdi18