"Fossies" - the Fresh Open Source Software Archive 
Member "mozplugger-2.1.6/cmd_flags.h" (17 Apr 2014, 1601 Bytes) of package /linux/www/old/mozplugger-2.1.6.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style:
standard) with prefixed line numbers and
code folding option.
Alternatively you can here
view or
download the uninterpreted source code file.
1 /**
2 * This file is part of mozplugger a fork of plugger, for list of developers
3 * see the README file.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
18 */
19
20 #ifndef _MOZPLUGGER_CMD_FLAGS_H_
21 #define _MOZPLUGGER_CMD_FLAGS_H_
22
23
24 #define H_LOOP 0x00001u
25 #define H_DAEMON 0x00002u
26 #define H_STREAM 0x00004u
27 #define H_NOISY 0x00008u
28 #define H_REPEATCOUNT 0x00010u
29 #define H_EMBED 0x00020u
30 #define H_NOEMBED 0x00040u
31 #define H_IGNORE_ERRORS 0x00080u
32 #define H_SWALLOW 0x00100u
33 #define H_MAXASPECT 0x00200u
34 #define H_FILL 0x00400u
35 #define H_NEEDS_XEMBED 0x00800u
36 #define H_CONTROLS 0x01000u
37 #define H_LINKS 0x02000u
38 #define H_FMATCH 0x04000u
39 #define H_AUTOSTART 0x08000u
40 #define H_SMALL_CNTRLS 0x10000u
41
42 #define INF_LOOPS 0x7fffffff
43
44 struct str2flag_s
45 {
46 const char * name;
47 unsigned int value;
48 };
49
50 typedef struct str2flag_s str2flag_t;
51
52 #endif