comparison gui/interface.c @ 32900:1481268ccd30

Move global skin directory variables. The more appropriate place for these variables is interface.c, because this is where they are set after all. Furthermore, their needless explicit initialization has been removed.
author ib
date Mon, 28 Feb 2011 14:47:17 +0000
parents 12ae3b893c59
children edb972e22021
comparison
equal deleted inserted replaced
32899:7104e2b2b648 32900:1481268ccd30
73 #include "m_option.h" 73 #include "m_option.h"
74 74
75 75
76 guiInterface_t guiIntfStruct; 76 guiInterface_t guiIntfStruct;
77 int guiWinID=-1; 77 int guiWinID=-1;
78
79 char *skinName;
80 char *skinDirInHome;
81 char *skinMPlayerDir;
78 82
79 int gstrcmp( const char * a,const char * b ) 83 int gstrcmp( const char * a,const char * b )
80 { 84 {
81 if ( !a && !b ) return 0; 85 if ( !a && !b ) return 0;
82 if ( !a || !b ) return -1; 86 if ( !a || !b ) return -1;