From 6b24cb2756017d4cd0e2ec83d6f9b0cbfb260821 Mon Sep 17 00:00:00 2001 From: wm4 Date: Tue, 20 Jan 2015 15:18:51 +0100 Subject: win32: remove check for SetPriorityClass() This function is always available, which is reflected by the fact that the configure check doesn't actually bother to check for its existence. Instead, MinGW and Cygwin imply it. The check was probably "needed" when the priority code was still in a separate source file. Remove the check, and use _WIN32 for testing for the win32 API (in a bunch of other places too). --- player/main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'player/main.c') diff --git a/player/main.c b/player/main.c index a51b2a2f0e..2dfc9b5dde 100644 --- a/player/main.c +++ b/player/main.c @@ -63,7 +63,7 @@ #include "command.h" #include "screenshot.h" -#if defined(__MINGW32__) || defined(__CYGWIN__) +#ifdef _WIN32 #include #ifndef BASE_SEARCH_PATH_ENABLE_SAFE_SEARCHMODE @@ -287,7 +287,7 @@ static void osdep_preinit(int *p_argc, char ***p_argv) mp_get_converted_argv(p_argc, p_argv); #endif -#if defined(__MINGW32__) || defined(__CYGWIN__) +#ifdef _WIN32 // stop Windows from showing all kinds of annoying error dialogs SetErrorMode(SEM_FAILCRITICALERRORS | SEM_NOOPENFILEERRORBOX); @@ -525,7 +525,7 @@ int mpv_main(int argc, char *argv[]) exit_player(mpctx, EXIT_NONE); } -#if HAVE_PRIORITY +#ifdef _WIN32 if (opts->w32_priority > 0) SetPriorityClass(GetCurrentProcess(), opts->w32_priority); #endif -- cgit v1.2.3