annotate Gui/skin/skin.h @ 9791:c5b63e88253d
Fix some 10L typo in header (m_struct_s instead of m_struct_st).
Add on/off for flag params
Remove the span stuff (unused, never finished, etc)
Add object setting option (syntax like -vf but with a settable separator)
Add a 'custom url' option type (url where each part can be any kind of
option)
Replace all exit() with a return code, exit will be done in the cmd line parser
author |
albeu |
date |
Wed, 02 Apr 2003 16:11:15 +0000 |
parents |
0a665389cf2b |
children |
634a2b279b1a |
rev |
line source |
1693
|
1
|
|
2 #ifndef __MY_SKIN
|
|
3 #define __MY_SKIN
|
|
4
|
|
5 #include "../app.h"
|
|
6
|
|
7 extern listItems * skinAppMPlayer;
|
|
8 //extern listItems * skinAppTV;
|
|
9 //extern listItems * skinAppRadio;
|
|
10
|
|
11 extern int skinRead( char * dname );
|
|
12 extern int skinBPRead( char * fname, txSample * bf );
|
|
13
|
|
14 // ---
|
|
15
|
8973
|
16 extern char * trimleft( char * in );
|
1693
|
17 extern char * strswap( char * in,char what,char whereof );
|
8973
|
18 extern char * trim( char * in );
|
1693
|
19
|
|
20 #endif
|