System.StdConvs.InitStdConvs
Delphi
procedure InitStdConvs;
C++
extern DELPHI_PACKAGE void __fastcall InitStdConvs(void);
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
procedure function |
public | System.StdConvs.pas System.StdConvs.hpp |
System.StdConvs | System.StdConvs |
Description
Initialize conversion variables for C++ program.
Insert InitStdConvs into a C++ program to ensure that StdConvs global variables are properly initialized. InitStdConvs does nothing and does not need to be called. A reference to InitStdConvs in a C++ program guarantees that the linker will provide a call to the unit's initialization code, even if no other StdConvs routines are present. This step is not necessary in Delphi code, which always calls the initialization code for referenced units.