diff options
| author | Robert Schumacher <roschuma@microsoft.com> | 2018-06-29 02:14:30 -0700 |
|---|---|---|
| committer | Robert Schumacher <roschuma@microsoft.com> | 2018-06-30 19:48:26 -0700 |
| commit | 03a038cb8656ef70b86b215511d15bb8b956c207 (patch) | |
| tree | ccccc0a38ea4c0ee4f412fa248e27c0d7728a3d9 /toolsrc/include | |
| parent | 3ff69f138bd4e9d364cf95731e95213b45473084 (diff) | |
| download | vcpkg-03a038cb8656ef70b86b215511d15bb8b956c207.tar.gz vcpkg-03a038cb8656ef70b86b215511d15bb8b956c207.zip | |
[vcpkg] Improve metrics performance on Windows
Diffstat (limited to 'toolsrc/include')
| -rw-r--r-- | toolsrc/include/vcpkg/base/system.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/toolsrc/include/vcpkg/base/system.h b/toolsrc/include/vcpkg/base/system.h index 813d600cd..3c4326ade 100644 --- a/toolsrc/include/vcpkg/base/system.h +++ b/toolsrc/include/vcpkg/base/system.h @@ -36,6 +36,10 @@ namespace vcpkg::System int cmd_execute(const CStringView cmd_line); +#if defined(_WIN32) + void cmd_execute_no_wait(const CStringView cmd_line); +#endif + ExitCodeAndOutput cmd_execute_and_capture_output(const CStringView cmd_line); enum class Color |
