mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-05-20 15:15:42 -04:00
11 lines
251 B
C++
11 lines
251 B
C++
#pragma once
|
|
#include "common/types.h"
|
|
#include "common/window_info.h"
|
|
#include <optional>
|
|
|
|
struct SDL_Window;
|
|
|
|
namespace SDLUtil {
|
|
std::optional<WindowInfo> GetWindowInfoForSDLWindow(SDL_Window* window);
|
|
float GetDPIScaleFactor(SDL_Window* window);
|
|
} |