| 1 | # WslcContainerNamedVolume |
| 2 | |
| 3 | ```c |
| 4 | typedef struct WslcContainerNamedVolume |
| 5 | { |
| 6 | _In_z_ PCSTR name; // Name of the session volume (from WslcVhdRequirements.name) |
| 7 | _In_z_ PCSTR containerPath; // Absolute path inside the container |
| 8 | _In_ BOOL readOnly; |
| 9 | } WslcContainerNamedVolume; |
| 10 | ``` |
| 11 | |
| 12 | | Field | Type | |
| 13 | |---|---| |
| 14 | | `name` | `PCSTR` | |
| 15 | | `containerPath` | `PCSTR` | |
| 16 | | `readOnly` | `BOOL` | |