master
md 18 lines 401 Bytes
Rendered Raw
1 # WslcSetSessionSettingsMemory
2
3 ```c
4 STDAPI WslcSetSessionSettingsMemory(_In_ WslcSessionSettings* sessionSettings, _In_ uint32_t memoryMB);
5 ```
6
7 | Parameter | Type | Direction |
8 |---|---|---|
9 | `sessionSettings` | `WslcSessionSettings*` | in |
10 | `memoryMB` | `uint32_t` | in |
11
12 Return value: `HRESULT`.
13
14 Example:
15
16 ```c
17 HRESULT hr = WslcSetSessionSettingsMemory(&sessionSettings, (uint32_t)4096);
18 ```