summaryrefslogtreecommitdiffstats
path: root/Gui/config.c
blob: ed224d9e9681d58ad8fc0b76a2b7ad337a875004 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

#include <stdlib.h>
#include <stdio.h>

unsigned char * cfgAppName = "movieplayer";
unsigned char * cfgSkin = NULL;

void cfgDefaults( void )
{
 if ( ( cfgSkin=(char *)calloc( 1,256 ) ) == NULL )
  {
   fprintf( stderr,"[config] Not enough memory.\n" );
   exit( 1 );
  }
 strcpy( cfgSkin,"default" );
// strcpy( cfgSkin,"blueHeart" );
}

int cfgRead( void )
{
 return 0;
}