master
md 19 lines 460 Bytes
Rendered Raw
1 # WslcInitContainerSettings
2
3 ```c
4 STDAPI WslcInitContainerSettings(_In_ PCSTR imageName, _Out_ WslcContainerSettings* containerSettings);
5 ```
6
7 | Parameter | Type | Direction |
8 |---|---|---|
9 | `imageName` | `PCSTR` | in |
10 | `containerSettings` | `WslcContainerSettings*` | out |
11
12 Return value: `HRESULT`.
13
14 Example:
15
16 ```c
17 WslcContainerSettings containerSettings;
18 HRESULT hr = WslcInitContainerSettings("docker.io/library/alpine:latest", &containerSettings);
19 ```