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.
9 #include "RPProcessInfoWin.h"
11 #include "cores/RetroPlayer/rendering/VideoRenderers/RPWinRenderer.h"
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
);