Merge pull request #26273 from 78andyp/blurayfixes2
[xbmc.git] / xbmc / cores / RetroPlayer / process / windows / RPProcessInfoWin.cpp
blobd6779c3afd1aabd5be41c5696d6a9e23e0b74072
1 /*
2 * Copyright (C) 2017-2018 Team Kodi
3 * This file is part of Kodi - https://kodi.tv
5 * SPDX-License-Identifier: GPL-2.0-or-later
6 * See LICENSES/README.md for more information.
7 */
9 #include "RPProcessInfoWin.h"
11 #include "cores/RetroPlayer/rendering/VideoRenderers/RPWinRenderer.h"
13 using namespace KODI;
14 using namespace RETRO;
16 CRPProcessInfoWin::CRPProcessInfoWin() : CRPProcessInfo("Windows")
20 std::unique_ptr<CRPProcessInfo> CRPProcessInfoWin::Create()
22 return std::make_unique<CRPProcessInfoWin>();
25 void CRPProcessInfoWin::Register()
27 CRPProcessInfo::RegisterProcessControl(CRPProcessInfoWin::Create);