> ## Documentation Index
> Fetch the complete documentation index at: https://docs.abbyy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Engine オブジェクトの LoadMultiProcessingParamsFromProfile メソッド

> ABBYY FineReader Engine API の Engine オブジェクトの LoadMultiProcessingParamsFromProfile メソッド。TMPFS 関連のパラメーターを適用するために、プロファイル ファイルから MultiProcessingParams をロードします。LoadProfile の後に呼び出します。

TMPFS 関連のパラメーターをロードするために、プロファイル ファイルから MultiProcessingParams のパラメーターをロードします。

この関数は、LoadProfile() 関数の後に呼び出す必要があります。

<div id="syntax">
  ## 構文
</div>

<div id="c">
  ### C++
</div>

```cpp theme={null}
HRESULT LoadMultiProcessingParamsFromProfile();
```

### C\#

```csharp theme={null}
void LoadMultiProcessingParamsFromProfile();
```

<div id="visual-basic-net">
  ### Visual Basic .NET
</div>

```vb theme={null}
Sub LoadMultiProcessingParamsFromProfile()
```

<div id="return-values">
  ## 戻り値
</div>

このメソッドに固有の戻り値はありません。[ABBYY FineReader Engine 関数の標準的な戻り値](/ja/fine-reader/engine/api-reference/return-codes)が返されます。

<div id="remarks">
  ## 注記
</div>

デフォルトの tmpfs パス (例: /dev/shm) の変更は、Linux システムでのみサポートされており、パフォーマンスに悪影響を与える可能性があります。<br />tmpfs の代わりに通常のファイルシステムを使用すると、機密データがディスク上に残る可能性があります。

<div id="samples">
  ## サンプル
</div>

<Accordion title="C++ コード">
  ```cpp theme={null}
  // Engine をロード
  CSafePtr<IEngine> engine = FRE::GetFREngine(options);
  ...
  engine->LoadProfile(userProfilePath);
  engine->LoadMultiProcessingParamsFromProfile();
  ```
</Accordion>

<div id="see-also">
  ## 関連項目
</div>

[MultiProcessingParams](/ja/fine-reader/engine/api-reference/parameter-objects/multiprocessingparams)

[共有メモリサイズが制限された環境で FRE for Linux を実行する](/ja/fine-reader/engine/distribution/distribution-linux/running-fre-12-with-limited-shm)
