System.TypInfo.TCallConv

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TCallConv = (ccReg, ccCdecl, ccPascal, ccStdCall, ccSafeCall);

C++

enum DECLSPEC_DENUM TCallConv : unsigned char { ccReg, ccCdecl, ccPascal, ccStdCall, ccSafeCall };

Properties

Type Visibility Source Unit Parent
enum public
System.TypInfo.pas
System.TypInfo.hpp
System.TypInfo System.TypInfo

Description

Enumerates the possible calling conventions supported by Delphi.

TCallConv is an enumeration type whose values describe the possible calling conventions supported by Delphi. The TCallConv value meanings are listed in the following table.



Value Meaning

ccReg

Identifies the register calling convention.

ccCdecl

Identifies the cdecl calling convention.

ccPascal

Identifies the pascal calling convention.

ccStdCall

Identifies the stdcall calling convention.

ccSafeCall

Identifies the safecall calling convention.



See Also