mirror of
https://github.com/mpv-player/mpv
synced 2025-04-01 23:00:41 +00:00
Merge two Windows-specific #if sections to simplify the condition.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29684 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
1782e34b55
commit
4dae2a980c
@ -2590,7 +2590,8 @@ int gui_no_filename=0;
|
|||||||
|
|
||||||
print_version("MPlayer");
|
print_version("MPlayer");
|
||||||
|
|
||||||
#if (defined(__MINGW32__) || defined(__CYGWIN__)) && defined(CONFIG_GUI)
|
#if defined(__MINGW32__) || defined(__CYGWIN__)
|
||||||
|
#ifdef CONFIG_GUI
|
||||||
void *runningmplayer = FindWindow("MPlayer GUI for Windows", "MPlayer for Windows");
|
void *runningmplayer = FindWindow("MPlayer GUI for Windows", "MPlayer for Windows");
|
||||||
if(runningmplayer && filename && use_gui){
|
if(runningmplayer && filename && use_gui){
|
||||||
COPYDATASTRUCT csData;
|
COPYDATASTRUCT csData;
|
||||||
@ -2605,7 +2606,6 @@ int gui_no_filename=0;
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(__MINGW32__) || defined(__CYGWIN__)
|
|
||||||
{
|
{
|
||||||
HMODULE kernel32 = GetModuleHandle("Kernel32.dll");
|
HMODULE kernel32 = GetModuleHandle("Kernel32.dll");
|
||||||
BOOL WINAPI (*setDEP)(DWORD) = NULL;
|
BOOL WINAPI (*setDEP)(DWORD) = NULL;
|
||||||
|
Loading…
Reference in New Issue
Block a user