| 1 | /*++ |
| 2 | |
| 3 | Copyright (c) Microsoft. All rights reserved. |
| 4 | |
| 5 | Module Name: |
| 6 | |
| 7 | WslClient.h |
| 8 | |
| 9 | Abstract: |
| 10 | |
| 11 | This file contains the declaration for WSL client entry points. |
| 12 | |
| 13 | --*/ |
| 14 | |
| 15 | #pragma once |
| 16 | |
| 17 | namespace wsl::windows::common { |
| 18 | class WslClient |
| 19 | { |
| 20 | public: |
| 21 | static int Main(_In_ LPCWSTR commandLine); |
| 22 | }; |
| 23 | } // namespace wsl::windows::common |