winget-cli

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

main.cpp (262B)


      1 // Copyright (c) Microsoft Corporation.
      2 // Licensed under the MIT License.
      3 #define WIN32_LEAN_AND_MEAN
      4 #include <Windows.h>
      5 #include <WindowsPackageManager.h>
      6 
      7 int wmain(int argc, wchar_t const** argv)
      8 {
      9     return WindowsPackageManagerCLIMain(argc, argv);
     10 }