[WASAPI] fix stream types and frequencies enumeration
[xbmc.git] / xbmc / guilib / IWindowManagerCallback.h
blobf8cdb73519d1a7e96b6c103727d2399341e7cad9
1 /*
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.
7 */
9 #pragma once
11 /*!
12 \file IWindowManagerCallback.h
13 \brief
16 /*!
17 \ingroup winman
18 \brief
20 class IWindowManagerCallback
22 public:
23 IWindowManagerCallback(void);
24 virtual ~IWindowManagerCallback(void);
26 virtual void FrameMove(bool processEvents, bool processGUI = true) = 0;
27 virtual void Render() = 0;
28 virtual void Process() = 0;
29 virtual bool GetRenderGUI() const { return false; }