AppleWin/source/frontends/sa2/utils.h
Andrea Odetti 092a74f5b3 Add F11 Save State confirmation as it is too easy to confuse with F12.
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
2020-12-06 18:28:17 +00:00

15 lines
377 B
C++

#pragma once
#include <SDL.h>
#include <memory>
#include <iosfwd>
#include <string>
void printRendererInfo(std::ostream & os,
const std::shared_ptr<SDL_Renderer> & ren,
const Uint32 pixelFormat,
const int selectedDriver);
bool show_yes_no_dialog(const std::shared_ptr<SDL_Window> & win,
const std::string & title,
const std::string & text);