master
h 25 lines 759 Bytes
Raw
1 /*++
2
3 Copyright (c) Microsoft. All rights reserved.
4
5 Module Name:
6
7 VolumeTasks.h
8
9 Abstract:
10
11 Declaration of volume command execution tasks.
12
13 --*/
14 #pragma once
15 #include "CLIExecutionContext.h"
16
17 namespace wsl::windows::wslc::task {
18
19 void CreateVolume(wsl::windows::wslc::execution::CLIExecutionContext& context);
20 void DeleteVolumes(wsl::windows::wslc::execution::CLIExecutionContext& context);
21 void GetVolumes(wsl::windows::wslc::execution::CLIExecutionContext& context);
22 void InspectVolumes(wsl::windows::wslc::execution::CLIExecutionContext& context);
23 void ListVolumes(wsl::windows::wslc::execution::CLIExecutionContext& context);
24 void PruneVolumes(wsl::windows::wslc::execution::CLIExecutionContext& context);
25 } // namespace wsl::windows::wslc::task