System.TResStringRec

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TResStringRec = packed record

C++

struct DECLSPEC_DRECORD TResStringRec
{
public:
#ifndef _WIN64
    unsigned *Module;
#else /* _WIN64 */
    unsigned __int64 *Module;
#endif /* _WIN64 */
    System::NativeUInt Identifier;
};

Properties

Type Visibility Source Unit Parent
record
struct
public
System.pas
System.hpp
System System

Description

Represents a string resource.

TResStringRec represents a string resource. TResStringRec is a structure that contains the module and the identifier of a string resource. Variables of type TResStringRec are used by the System routines to locate and load string resources at run time.

For mobile applications, TResStringRec contains a MarshaledAString, which is used to look up resource strings on mobile platforms.

See Also