annotate Gui/skin/cut.h @ 7870:b571ae470520

Fixed a bug in MPlayer which would prevent proper parsing of some floating point options when the locale used has a decimal point other than the dot character ("."). My patch inserts calls to setlocale around float parsing functions strtod() and atof() in cfgparser.c and input/input.c. patch by Aleksander Adamowski <olo@altkom.com.pl>
author arpi
date Wed, 23 Oct 2002 17:42:12 +0000
parents 58dd326fcc4a
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1693
d237c5d4b216 GUI version n-1
arpi
parents:
diff changeset
1
1852
58dd326fcc4a fix xshape, mixer, fullscreen, etc
pontscho
parents: 1693
diff changeset
2 #ifndef _CUT_H
58dd326fcc4a fix xshape, mixer, fullscreen, etc
pontscho
parents: 1693
diff changeset
3 #define _CUT_H
1693
d237c5d4b216 GUI version n-1
arpi
parents:
diff changeset
4
1852
58dd326fcc4a fix xshape, mixer, fullscreen, etc
pontscho
parents: 1693
diff changeset
5 extern void cutItem( char * in,char * out,char sep,int num );
58dd326fcc4a fix xshape, mixer, fullscreen, etc
pontscho
parents: 1693
diff changeset
6 extern int cutItemToInt( char * in,char sep,int num );
58dd326fcc4a fix xshape, mixer, fullscreen, etc
pontscho
parents: 1693
diff changeset
7 extern float cutItemToFloat( char * in,char sep,int num );
58dd326fcc4a fix xshape, mixer, fullscreen, etc
pontscho
parents: 1693
diff changeset
8 extern void cutChunk( char * in,char * s1 );
1693
d237c5d4b216 GUI version n-1
arpi
parents:
diff changeset
9
1852
58dd326fcc4a fix xshape, mixer, fullscreen, etc
pontscho
parents: 1693
diff changeset
10 #endif