diff options
author | Lioncash <mathew1800@gmail.com> | 2020-08-23 01:23:22 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-08-23 01:29:54 +0200 |
commit | ca5ed50655b744ae4d3242b2105676a43d1482e0 (patch) | |
tree | ac342b98c89c4a15d536e8e1e98ea9f753154e32 /src/common | |
parent | Merge pull request #4546 from lioncash/telemetry (diff) | |
download | yuzu-ca5ed50655b744ae4d3242b2105676a43d1482e0.tar yuzu-ca5ed50655b744ae4d3242b2105676a43d1482e0.tar.gz yuzu-ca5ed50655b744ae4d3242b2105676a43d1482e0.tar.bz2 yuzu-ca5ed50655b744ae4d3242b2105676a43d1482e0.tar.lz yuzu-ca5ed50655b744ae4d3242b2105676a43d1482e0.tar.xz yuzu-ca5ed50655b744ae4d3242b2105676a43d1482e0.tar.zst yuzu-ca5ed50655b744ae4d3242b2105676a43d1482e0.zip |
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/CMakeLists.txt | 1 | ||||
-rw-r--r-- | src/common/web_result.h | 25 |
2 files changed, 0 insertions, 26 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index 78c3bfb3b..5d54516eb 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -172,7 +172,6 @@ add_library(common STATIC virtual_buffer.h wall_clock.cpp wall_clock.h - web_result.h zstd_compression.cpp zstd_compression.h ) diff --git a/src/common/web_result.h b/src/common/web_result.h deleted file mode 100644 index 8bfa2141d..000000000 --- a/src/common/web_result.h +++ /dev/null @@ -1,25 +0,0 @@ -// Copyright 2018 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. - -#pragma once - -#include <string> -#include "common/common_types.h" - -namespace Common { -struct WebResult { - enum class Code : u32 { - Success, - InvalidURL, - CredentialsMissing, - LibError, - HttpError, - WrongContent, - NoWebservice, - }; - Code result_code; - std::string result_string; - std::string returned_data; -}; -} // namespace Common |