yuzu/src/core/hle/service/http_c.h

23 lines
409 B
C
Raw Normal View History

2014-12-21 19:52:10 +00:00
// Copyright 2014 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include "core/hle/service/service.h"
namespace Service {
namespace HTTP {
2014-12-21 19:52:10 +00:00
class HTTP_C final : public Interface {
2014-12-21 19:52:10 +00:00
public:
HTTP_C();
2014-12-21 19:52:10 +00:00
std::string GetPortName() const override {
return "http:C";
}
};
} // namespace HTTP
} // namespace Service