2 * Copyright (C) 2005-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.
11 #include "IScreenshotSurface.h"
21 static void Register(const std::function
<std::unique_ptr
<IScreenshotSurface
>()>& createFunc
);
23 static void TakeScreenshot();
24 static void TakeScreenshot(const std::string
&filename
, bool sync
);
27 static std::vector
<std::function
<std::unique_ptr
<IScreenshotSurface
>()>> m_screenShotSurfaces
;