winget-cli

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

Utils.h (371B)


      1 // Copyright (c) Microsoft Corporation.
      2 // Licensed under the MIT License.
      3 #pragma once
      4 #pragma warning( push )
      5 #pragma warning ( disable : 6001 6388 6553)
      6 #include <wil/resource.h>
      7 #pragma warning( pop )
      8 #include <string>
      9 
     10 unsigned char* GetUCharString(const std::string& str);
     11 
     12 std::string GetUserSID();
     13 
     14 wil::unique_event CreateOrOpenServerStartEvent();