annotate gui/util/cut.h @ 36895:5616bd62fa26

Fix bug with hpotmeter/vpotmeter in the Win32 GUI. Allow a hpotmeter/vpotmeter without button. (The rendering should be fixed, actually, because it only renders the button but not the phases image.)
author ib
date Tue, 11 Mar 2014 12:48:59 +0000
parents a5f7a861a293
children 0b80003f6542
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
33046
9684ad0e1291 Move files with auxiliary functions to own directory.
ib
parents:
diff changeset
1 /*
9684ad0e1291 Move files with auxiliary functions to own directory.
ib
parents:
diff changeset
2 * This file is part of MPlayer.
9684ad0e1291 Move files with auxiliary functions to own directory.
ib
parents:
diff changeset
3 *
9684ad0e1291 Move files with auxiliary functions to own directory.
ib
parents:
diff changeset
4 * MPlayer is free software; you can redistribute it and/or modify
9684ad0e1291 Move files with auxiliary functions to own directory.
ib
parents:
diff changeset
5 * it under the terms of the GNU General Public License as published by
9684ad0e1291 Move files with auxiliary functions to own directory.
ib
parents:
diff changeset
6 * the Free Software Foundation; either version 2 of the License, or
9684ad0e1291 Move files with auxiliary functions to own directory.
ib
parents:
diff changeset
7 * (at your option) any later version.
9684ad0e1291 Move files with auxiliary functions to own directory.
ib
parents:
diff changeset
8 *
9684ad0e1291 Move files with auxiliary functions to own directory.
ib
parents:
diff changeset
9 * MPlayer is distributed in the hope that it will be useful,
9684ad0e1291 Move files with auxiliary functions to own directory.
ib
parents:
diff changeset
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9684ad0e1291 Move files with auxiliary functions to own directory.
ib
parents:
diff changeset
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9684ad0e1291 Move files with auxiliary functions to own directory.
ib
parents:
diff changeset
12 * GNU General Public License for more details.
9684ad0e1291 Move files with auxiliary functions to own directory.
ib
parents:
diff changeset
13 *
9684ad0e1291 Move files with auxiliary functions to own directory.
ib
parents:
diff changeset
14 * You should have received a copy of the GNU General Public License along
9684ad0e1291 Move files with auxiliary functions to own directory.
ib
parents:
diff changeset
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
9684ad0e1291 Move files with auxiliary functions to own directory.
ib
parents:
diff changeset
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
9684ad0e1291 Move files with auxiliary functions to own directory.
ib
parents:
diff changeset
17 */
9684ad0e1291 Move files with auxiliary functions to own directory.
ib
parents:
diff changeset
18
9684ad0e1291 Move files with auxiliary functions to own directory.
ib
parents:
diff changeset
19 #ifndef MPLAYER_GUI_CUT_H
9684ad0e1291 Move files with auxiliary functions to own directory.
ib
parents:
diff changeset
20 #define MPLAYER_GUI_CUT_H
9684ad0e1291 Move files with auxiliary functions to own directory.
ib
parents:
diff changeset
21
9684ad0e1291 Move files with auxiliary functions to own directory.
ib
parents:
diff changeset
22 #include <stddef.h>
9684ad0e1291 Move files with auxiliary functions to own directory.
ib
parents:
diff changeset
23
33981
a59b359c20f7 Add doxygen comments to cut.c and cut.h.
ib
parents: 33046
diff changeset
24 /**
35729
a5f7a861a293 Revise some doxygen comments.
ib
parents: 33981
diff changeset
25 * @brief Wraps #cutItemString():
a5f7a861a293 Revise some doxygen comments.
ib
parents: 33981
diff changeset
26 * Extract a part of a string delimited by a separator character
a5f7a861a293 Revise some doxygen comments.
ib
parents: 33981
diff changeset
27 * at most the size of @a out.
33981
a59b359c20f7 Add doxygen comments to cut.c and cut.h.
ib
parents: 33046
diff changeset
28 */
33046
9684ad0e1291 Move files with auxiliary functions to own directory.
ib
parents:
diff changeset
29 #define cutItem(in, out, sep, num) cutItemString(in, out, sep, num, sizeof(out))
9684ad0e1291 Move files with auxiliary functions to own directory.
ib
parents:
diff changeset
30
9684ad0e1291 Move files with auxiliary functions to own directory.
ib
parents:
diff changeset
31 void cutItemString(char *in, char *out, char sep, int num, size_t maxout);
9684ad0e1291 Move files with auxiliary functions to own directory.
ib
parents:
diff changeset
32 int cutItemToInt(char *in, char sep, int num);
9684ad0e1291 Move files with auxiliary functions to own directory.
ib
parents:
diff changeset
33
9684ad0e1291 Move files with auxiliary functions to own directory.
ib
parents:
diff changeset
34 #endif /* MPLAYER_GUI_CUT_H */