mirror of https://github.com/mpv-player/mpv
24 lines
525 B
C
24 lines
525 B
C
|
|
#ifndef __MY_SKIN
|
|
#define __MY_SKIN
|
|
|
|
#include "../app.h"
|
|
|
|
extern listItems * skinAppMPlayer;
|
|
//extern listItems * skinAppTV;
|
|
//extern listItems * skinAppRadio;
|
|
|
|
extern int skinRead( char * dname );
|
|
extern int skinBPRead( char * fname, txSample * bf );
|
|
|
|
extern void btnModify( int event,float state );
|
|
extern float btnGetValue( int event );
|
|
|
|
// ---
|
|
|
|
extern char * strdelspacesbeforecommand( char * in );
|
|
extern char * strswap( char * in,char what,char whereof );
|
|
extern char * strdelspaces( char * in );
|
|
|
|
#endif
|