| 1 | /*++ |
| 2 | |
| 3 | Copyright (c) Microsoft. All rights reserved. |
| 4 | |
| 5 | Module Name: |
| 6 | |
| 7 | main.cpp |
| 8 | |
| 9 | Abstract: |
| 10 | |
| 11 | This file contains the entry point for wslg.exe. |
| 12 | |
| 13 | --*/ |
| 14 | |
| 15 | #include "precomp.h" |
| 16 | |
| 17 | int WINAPI wWinMain(HINSTANCE, HINSTANCE, PWSTR, int) |
| 18 | { |
| 19 | return wsl::windows::common::WslClient::Main(GetCommandLineW()); |
| 20 | } |