[Mplayer-cvslog] CVS: main/Gui/skin skin.c,1.18,1.19

Zoltan Ponekker pontscho at mplayerhq.hu
Wed Jul 3 10:55:29 CEST 2002


Update of /cvsroot/mplayer/main/Gui/skin
In directory mail:/var/tmp.root/cvs-serv5476/Gui/skin

Modified Files:
	skin.c 
Log Message:
remove unneded config files

Index: skin.c
===================================================================
RCS file: /cvsroot/mplayer/main/Gui/skin/skin.c,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- skin.c	25 Jun 2002 23:27:14 -0000	1.18
+++ skin.c	3 Jul 2002 08:55:26 -0000	1.19
@@ -74,7 +74,7 @@
  return i;
 }
 
-int __section( char * in )
+int cmd_section( char * in )
 {
  strlower( in );
  defList=NULL;
@@ -83,7 +83,7 @@
  return 0;
 }
 
-int __end( char * in )
+int cmd_end( char * in )
 {
  if ( strlen( winList ) ) winList[0]=0;
   else defList=NULL;
@@ -91,7 +91,7 @@
  return 0;
 }
 
-int __window( char * in )
+int cmd_window( char * in )
 {
  CHECKDEFLIST( "window" );
 
@@ -101,7 +101,7 @@
  return 0;
 }
 
-int __base( char * in )
+int cmd_base( char * in )
 {
  unsigned char fname[512];
  unsigned char tmp[512];
@@ -188,7 +188,7 @@
  return 0;
 }
 
-int __background( char * in )
+int cmd_background( char * in )
 {
  CHECKDEFLIST( "background" );
  CHECKWINLIST( "background" );
@@ -203,7 +203,7 @@
  return 0;
 }
 
-int __button( char * in )
+int cmd_button( char * in )
 {
  unsigned char   fname[512];
  unsigned char   tmp[512];
@@ -246,7 +246,7 @@
  return 0;
 }
 
-int __selected( char * in )
+int cmd_selected( char * in )
 {
  unsigned char   fname[512];
  unsigned char   tmp[512];
@@ -265,7 +265,7 @@
  return 0;
 }
 
-int __menu( char * in )
+int cmd_menu( char * in )
 { // menu = number,x,y,sx,sy,msg
  int             x,y,sx,sy,msg;
  unsigned char   tmp[64];
@@ -297,7 +297,7 @@
  return 0;
 }
 
-int __hpotmeter( char * in )
+int cmd_hpotmeter( char * in )
 { // hpotmeter=buttonbitmaps,sx,sy,phasebitmaps,phases,default value,x,y,sx,sy,msg
  int             x,y,psx,psy,ph,sx,sy,msg,d;
  unsigned char   tmp[512];
@@ -354,7 +354,7 @@
  return 0;
 }
 
-int __potmeter( char * in )
+int cmd_potmeter( char * in )
 { // potmeter=phasebitmaps,phases,default value,x,y,sx,sy,msg
  int             x,y,ph,sx,sy,msg,d;
  unsigned char   tmp[512];
@@ -397,7 +397,7 @@
  return 0;
 }
 
-int __font( char * in )
+int cmd_font( char * in )
 { // font=fontname,fontid
  char    name[512];
  char    id[512];
@@ -426,7 +426,7 @@
  return 0;
 }
 
-int __slabel( char * in )
+int cmd_slabel( char * in )
 {
  char    tmp[512];
  char    sid[63];
@@ -460,7 +460,7 @@
  return 0;
 }
 
-int __dlabel( char * in )
+int cmd_dlabel( char * in )
 { // dlabel=x,y,sx,align,fontid,string ...
  char    tmp[512];
  char    sid[63];
@@ -496,7 +496,7 @@
  return 0;
 }
 
-int __decoration( char * in )
+int cmd_decoration( char * in )
 {
  char    tmp[512];
 
@@ -521,20 +521,20 @@
 
 _item skinItem[] =
  {
-  { "section",     __section     },
-  { "end",         __end         },
-  { "window",      __window      },
-  { "base",        __base        },
-  { "button",      __button      },
-  { "selected",    __selected    },
-  { "background",  __background  },
-  { "hpotmeter",   __hpotmeter   },
-  { "potmeter",    __potmeter    },
-  { "font",        __font        },
-  { "slabel",      __slabel      },
-  { "dlabel",      __dlabel      },
-  { "decoration",  __decoration  },
-  { "menu",        __menu        }
+  { "section",     cmd_section     },
+  { "end",         cmd_end         },
+  { "window",      cmd_window      },
+  { "base",        cmd_base        },
+  { "button",      cmd_button      },
+  { "selected",    cmd_selected    },
+  { "background",  cmd_background  },
+  { "hpotmeter",   cmd_hpotmeter   },
+  { "potmeter",    cmd_potmeter    },
+  { "font",        cmd_font        },
+  { "slabel",      cmd_slabel      },
+  { "dlabel",      cmd_dlabel      },
+  { "decoration",  cmd_decoration  },
+  { "menu",        cmd_menu        }
  };
 
 #define ITEMS (int)( sizeof( skinItem )/sizeof( _item ) )




More information about the MPlayer-cvslog mailing list