master
md 19 lines 414 Bytes
Rendered Raw
1 # WslcGetContainerState
2
3 ```c
4 STDAPI WslcGetContainerState(_In_ WslcContainer container, _Out_ WslcContainerState* state);
5 ```
6
7 | Parameter | Type | Direction |
8 |---|---|---|
9 | `container` | `WslcContainer` | in |
10 | `state` | `WslcContainerState*` | out |
11
12 Return value: `HRESULT`.
13
14 Example:
15
16 ```c
17 WslcContainerState state = WSLC_CONTAINER_STATE_INVALID;
18 HRESULT hr = WslcGetContainerState(container, &state);
19 ```