Get rid of some header files
This commit is contained in:
parent
4d20ea936f
commit
66c15314e2
|
@ -28,7 +28,6 @@
|
||||||
#include <commdlg.h>
|
#include <commdlg.h>
|
||||||
#include "../../retroarch.h"
|
#include "../../retroarch.h"
|
||||||
#include "../video_thread_wrapper.h"
|
#include "../video_thread_wrapper.h"
|
||||||
#include "../drivers_wm/win32_shader_dlg.h"
|
|
||||||
|
|
||||||
#ifndef _MSC_VER
|
#ifndef _MSC_VER
|
||||||
extern "C" {
|
extern "C" {
|
||||||
|
|
|
@ -48,6 +48,10 @@ void win32_monitor_get_info(void);
|
||||||
void win32_monitor_info(void *data, void *hm_data, unsigned *mon_id);
|
void win32_monitor_info(void *data, void *hm_data, unsigned *mon_id);
|
||||||
|
|
||||||
void create_gl_context(HWND hwnd, bool *quit);
|
void create_gl_context(HWND hwnd, bool *quit);
|
||||||
|
|
||||||
|
bool win32_shader_dlg_init(void);
|
||||||
|
void shader_dlg_show(HWND parent_hwnd);
|
||||||
|
void shader_dlg_params_reload(void);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void win32_monitor_from_window(HWND data, bool destroy);
|
void win32_monitor_from_window(HWND data, bool destroy);
|
||||||
|
|
|
@ -56,7 +56,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(_WIN32) && !defined(_XBOX)
|
#if defined(_WIN32) && !defined(_XBOX)
|
||||||
#include "../drivers_wm/win32_shader_dlg.h"
|
#include "../common/win32_common.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "../video_shader_driver.h"
|
#include "../video_shader_driver.h"
|
||||||
|
|
|
@ -1,22 +0,0 @@
|
||||||
#ifndef WGL_SHADER_DLG_H
|
|
||||||
#define WGL_SHADER_DLG_H
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef _XBOX
|
|
||||||
#define WIN32_LEAN_AND_MEAN
|
|
||||||
#include <windows.h>
|
|
||||||
|
|
||||||
bool win32_shader_dlg_init(void);
|
|
||||||
void shader_dlg_show(HWND parent_hwnd);
|
|
||||||
void shader_dlg_params_reload(void);
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // WGL_SHADER_DLG_H
|
|
|
@ -46,7 +46,6 @@
|
||||||
#include "../../runloop.h"
|
#include "../../runloop.h"
|
||||||
#include "../../gfx/video_context_driver.h"
|
#include "../../gfx/video_context_driver.h"
|
||||||
#include "../../gfx/video_monitor.h"
|
#include "../../gfx/video_monitor.h"
|
||||||
#include "../../gfx/drivers_wm/win32_shader_dlg.h"
|
|
||||||
|
|
||||||
#include "../../gfx/common/gl_common.h"
|
#include "../../gfx/common/gl_common.h"
|
||||||
#include "../../gfx/common/win32_common.h"
|
#include "../../gfx/common/win32_common.h"
|
||||||
|
|
Loading…
Reference in New Issue