TLangRec declares a record used to describe a Windows locale.
TLangRec = packed record FName: string; FLCID: LCID; FExt: string; end;
struct TLangRec { AnsiString FName; LCID FLCID; AnsiString FExt; };
SysUtils
The TLangRec type declares a record that holds the attributes of a Windows language. The record is principally used internally by TLanguages.
FName holds the Windows locale name.
FLCID holds the local id for the Windows locale.
FExt holds the recommended filename extension for the Windows locale.
Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
|
What do you think about this topic? Send feedback!
|