blob: 1cc3878653434feebaf5ec88944f2960f5f988fb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
/*
* libopenmpt_plugin_gui.hpp
* -------------------------
* Purpose: libopenmpt plugin GUI
* Notes : (currently none)
* Authors: OpenMPT Devs
* The OpenMPT source code is released under the BSD license. Read LICENSE for more details.
*/
#ifndef LIBOPENMPT_PLUGIN_GUI_HPP
#define LIBOPENMPT_PLUGIN_GUI_HPP
#include "libopenmpt_plugin_settings.hpp"
#include <windows.h>
#include <string>
namespace libopenmpt {
namespace plugin {
#if defined(MPT_WITH_MFC)
void DllMainAttach();
void DllMainDetach();
#endif // MPT_WITH_MFC
void gui_edit_settings( libopenmpt_settings * s, HWND parent, std::basic_string<TCHAR> title );
void gui_show_file_info( HWND parent, std::basic_string<TCHAR> title, std::basic_string<TCHAR> info );
} // namespace plugin
} // namespace libopenmpt
#endif // LIBOPENMPT_PLUGIN_GUI_HPP
|