From ca5ed50655b744ae4d3242b2105676a43d1482e0 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sat, 22 Aug 2020 19:23:22 -0400 Subject: web_service: Move web_result.h into web_service This is the only place it's actively used. It's also more appropriate for web-related structures to be within the web service target. Especially given this one doesn't rely on anything in the common library. --- src/common/web_result.h | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 src/common/web_result.h (limited to 'src/common/web_result.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 -#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 -- cgit v1.2.3