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