summaryrefslogtreecommitdiffstats
path: root/cfg-common.h
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-02-10 15:34:44 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-02-10 15:34:44 +0000
commitcdfafa69996bce40732997dca168b9f36794dbe8 (patch)
tree5244396fad3f3c8b89886d4403a7701a80f87ca4 /cfg-common.h
parent97e427039d8123eed37990eaaf13b403daaae2da (diff)
downloadmpv-cdfafa69996bce40732997dca168b9f36794dbe8.tar.bz2
mpv-cdfafa69996bce40732997dca168b9f36794dbe8.tar.xz
Add priority support for OS/2 and factorize the Windows priority support.
patch by KO Myung-Hun, komh chollian net git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28520 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'cfg-common.h')
-rw-r--r--cfg-common.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/cfg-common.h b/cfg-common.h
index 9a4e258f35..ea5fce63f0 100644
--- a/cfg-common.h
+++ b/cfg-common.h
@@ -350,25 +350,6 @@ const m_option_t msgl_config[]={
};
-#if defined(__MINGW32__) || defined(__CYGWIN__)
-struct {
- char* name;
- int prio;
-} priority_presets_defs[] = {
- { "realtime", REALTIME_PRIORITY_CLASS},
- { "high", HIGH_PRIORITY_CLASS},
-#ifdef ABOVE_NORMAL_PRIORITY_CLASS
- { "abovenormal", ABOVE_NORMAL_PRIORITY_CLASS},
-#endif
- { "normal", NORMAL_PRIORITY_CLASS},
-#ifdef BELOW_NORMAL_PRIORITY_CLASS
- { "belownormal", BELOW_NORMAL_PRIORITY_CLASS},
-#endif
- { "idle", IDLE_PRIORITY_CLASS},
- { NULL, NORMAL_PRIORITY_CLASS} /* default */
-};
-#endif /* defined(__MINGW32__) || defined(__CYGWIN__) */
-
extern const m_option_t noconfig_opts[];
extern const m_option_t lavc_decode_opts_conf[];