System.TResStringRec

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TResStringRec = packed record
    Module: ^HMODULE;
    Identifier: NativeUint;
  end;

C++

struct DECLSPEC_DRECORD TResStringRec
{
public:
    NativeUInt *Module;
    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