| 1 | /*++ |
| 2 | |
| 3 | Copyright (c) Microsoft. All rights reserved. |
| 4 | |
| 5 | Module Name: |
| 6 | |
| 7 | wslinfo.h |
| 8 | |
| 9 | Abstract: |
| 10 | |
| 11 | This file contains wslinfo function declarations. |
| 12 | |
| 13 | --*/ |
| 14 | |
| 15 | #pragma once |
| 16 | |
| 17 | #define WSLINFO_NAME "wslinfo" |
| 18 | |
| 19 | #define WSLINFO_MSAL_PROXY_PATH "--msal-proxy-path" |
| 20 | #define WSLINFO_NETWORKING_MODE "--networking-mode" |
| 21 | #define WSLINFO_WSL_VERSION "--version" |
| 22 | #define WSLINFO_WSL_VERSION_LEGACY "--wsl-version" |
| 23 | #define WSLINFO_WSL_VMID "--vm-id" |
| 24 | #define WSLINFO_WSL_HELP "--help" |
| 25 | #define WSLINFO_NO_NEWLINE 'n' |
| 26 | |
| 27 | int WslInfoEntry(int Argc, char* Argv[]); |