System.TResStringRec
Delphi
  TResStringRec = packed record
    Module: ^HMODULE;
    Identifier: NativeUint;
  end;
C++
struct DECLSPEC_DRECORD TResStringRec
{
public:
    NativeUInt *Module;
    NativeUInt Identifier;
};
プロパティ
| 種類 | 可視性 | ソース | ユニット | 親 | 
|---|---|---|---|---|
| record struct | public | System.pas System.hpp | System | System | 
説明
文字列リソースを表します。
TResStringRec は、文字列リソースを表します。TResStringRec は、文字列リソースのモジュールと識別子を含む構造体です。TResStringRec 型の変数は、System ユニットのルーチンが実行時に文字列リソースを探して読み込むときに使用されます。
モバイル アプリケーションの場合、TResStringRec に MarshaledAString が含まれていて、それがモバイル プラットフォームでのリソース文字列の検索に使われます。