annotate osdep/priority.h @ 32676:db882cd69776

Do not #define _WIN32 on the command line for Cygwin. Newer Cygwin versions no longer do this and hopefully we should be able to survive without this hack as well. This change necessitates adapting two #ifdefs in the MPlayer codebase. It is committed untested as I do not have access to a Cygwin system.
author diego
date Thu, 06 Jan 2011 12:42:59 +0000
parents 32725ca88fed
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
28485
3f597aacbb69 Add priority support for OS/2 and factorize the Windows priority support.
diego
parents:
diff changeset
1 /*
3f597aacbb69 Add priority support for OS/2 and factorize the Windows priority support.
diego
parents:
diff changeset
2 * header for implementation of '-priority'
3f597aacbb69 Add priority support for OS/2 and factorize the Windows priority support.
diego
parents:
diff changeset
3 *
3f597aacbb69 Add priority support for OS/2 and factorize the Windows priority support.
diego
parents:
diff changeset
4 * Copyright (c) 2009 by KO Myung-Hun (komh@chollian.net)
3f597aacbb69 Add priority support for OS/2 and factorize the Windows priority support.
diego
parents:
diff changeset
5 *
3f597aacbb69 Add priority support for OS/2 and factorize the Windows priority support.
diego
parents:
diff changeset
6 * This file is part of MPlayer.
3f597aacbb69 Add priority support for OS/2 and factorize the Windows priority support.
diego
parents:
diff changeset
7 *
3f597aacbb69 Add priority support for OS/2 and factorize the Windows priority support.
diego
parents:
diff changeset
8 * MPlayer is free software; you can redistribute it and/or modify
3f597aacbb69 Add priority support for OS/2 and factorize the Windows priority support.
diego
parents:
diff changeset
9 * it under the terms of the GNU General Public License as published by
3f597aacbb69 Add priority support for OS/2 and factorize the Windows priority support.
diego
parents:
diff changeset
10 * the Free Software Foundation; either version 2 of the License, or
3f597aacbb69 Add priority support for OS/2 and factorize the Windows priority support.
diego
parents:
diff changeset
11 * (at your option) any later version.
3f597aacbb69 Add priority support for OS/2 and factorize the Windows priority support.
diego
parents:
diff changeset
12 *
3f597aacbb69 Add priority support for OS/2 and factorize the Windows priority support.
diego
parents:
diff changeset
13 * MPlayer is distributed in the hope that it will be useful,
3f597aacbb69 Add priority support for OS/2 and factorize the Windows priority support.
diego
parents:
diff changeset
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
3f597aacbb69 Add priority support for OS/2 and factorize the Windows priority support.
diego
parents:
diff changeset
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
3f597aacbb69 Add priority support for OS/2 and factorize the Windows priority support.
diego
parents:
diff changeset
16 * GNU General Public License for more details.
3f597aacbb69 Add priority support for OS/2 and factorize the Windows priority support.
diego
parents:
diff changeset
17 *
3f597aacbb69 Add priority support for OS/2 and factorize the Windows priority support.
diego
parents:
diff changeset
18 * You should have received a copy of the GNU General Public License along
3f597aacbb69 Add priority support for OS/2 and factorize the Windows priority support.
diego
parents:
diff changeset
19 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
3f597aacbb69 Add priority support for OS/2 and factorize the Windows priority support.
diego
parents:
diff changeset
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
3f597aacbb69 Add priority support for OS/2 and factorize the Windows priority support.
diego
parents:
diff changeset
21 */
3f597aacbb69 Add priority support for OS/2 and factorize the Windows priority support.
diego
parents:
diff changeset
22
3f597aacbb69 Add priority support for OS/2 and factorize the Windows priority support.
diego
parents:
diff changeset
23 #ifndef MPLAYER_PRIORITY_H
3f597aacbb69 Add priority support for OS/2 and factorize the Windows priority support.
diego
parents:
diff changeset
24 #define MPLAYER_PRIORITY_H
3f597aacbb69 Add priority support for OS/2 and factorize the Windows priority support.
diego
parents:
diff changeset
25
3f597aacbb69 Add priority support for OS/2 and factorize the Windows priority support.
diego
parents:
diff changeset
26 extern char *proc_priority;
3f597aacbb69 Add priority support for OS/2 and factorize the Windows priority support.
diego
parents:
diff changeset
27
3f597aacbb69 Add priority support for OS/2 and factorize the Windows priority support.
diego
parents:
diff changeset
28 void set_priority(void);
3f597aacbb69 Add priority support for OS/2 and factorize the Windows priority support.
diego
parents:
diff changeset
29
3f597aacbb69 Add priority support for OS/2 and factorize the Windows priority support.
diego
parents:
diff changeset
30 #endif /* MPLAYER_PRIORITY_H */