scummvm/backends/platform/sdl/win32/win32-window.h

38 lines
1.1 KiB
C
Raw Normal View History

2015-02-16 01:24:42 +01:00
/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
2015-02-16 01:24:42 +01:00
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2015-02-16 01:24:42 +01:00
*
*/
#ifndef BACKENDS_PLATFORM_SDL_WIN32_WIN32_WINDOW_H
#define BACKENDS_PLATFORM_SDL_WIN32_WIN32_WINDOW_H
#ifdef WIN32
#include "backends/platform/sdl/sdl-window.h"
2020-10-16 18:32:08 +01:00
class SdlWindow_Win32 final : public SdlWindow {
2015-02-16 01:24:42 +01:00
public:
void setupIcon() override;
HWND getHwnd();
2015-02-16 01:24:42 +01:00
};
#endif
#endif