OSDN Git Service

Merge pull request #3569 from sikabane-works/release/3.0.0.88-alpha
[hengbandforosx/hengbandosx.git] / src / main-win / main-win-bg.h
1 #pragma once
2
3 #include "main-win/main-win-define.h"
4 #include <filesystem>
5 #include <windows.h>
6
7 /*!
8  * mode of background
9  */
10 enum class bg_mode {
11     BG_NONE = 0,
12     BG_ONE = 1,
13     BG_PRESET = 2,
14 };
15
16 void load_bg_prefs(void);
17 void finalize_bg();
18
19 void delete_bg(void);
20 bool load_bg(const std::filesystem::path &path);
21 void draw_bg(HDC hdc, RECT *r);