# HG changeset patch # User reimar # Date 1114528031 0 # Node ID f5a466e5b19868bea09b2cccd2b1316b6dbd6634 # Parent 2f18d64a6f23be3b7831c41549e3a892d08083dc not all Windows version have ABOVE_NORMAL and BELOW_NORMAL priorities... diff -r 2f18d64a6f23 -r f5a466e5b198 cfg-common.h --- a/cfg-common.h Tue Apr 26 11:01:07 2005 +0000 +++ b/cfg-common.h Tue Apr 26 15:07:11 2005 +0000 @@ -483,9 +483,13 @@ } 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 */ };