~ubuntu-branches/ubuntu/saucy/xmms2/saucy-proposed

« back to all changes in this revision

Viewing changes to src/clients/nycli/configuration.h

  • Committer: Bazaar Package Importer
  • Author(s): Benjamin Drung
  • Date: 2011-10-22 23:53:00 UTC
  • mto: (38.1.2 sid)
  • mto: This revision was merged to the branch mainline in revision 43.
  • Revision ID: james.westby@ubuntu.com-20111022235300-u50pdo3g341jvk7q
ImportĀ upstreamĀ versionĀ 0.8+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*  XMMS2 - X Music Multiplexer System
2
 
 *  Copyright (C) 2003-2007 XMMS2 Team
 
2
 *  Copyright (C) 2003-2011 XMMS2 Team
3
3
 *
4
4
 *  PLUGINS ARE NOT CONSIDERED TO BE DERIVED WORK !!!
5
5
 *
25
25
 
26
26
#include "main.h"
27
27
 
28
 
/* This is the basename of the default history file */
29
 
#define HISTORY_FILE_BASE "nyxmms2_history"
30
 
 
31
 
struct configuration_St {
32
 
        gchar *path;
33
 
        gchar *histpath;
34
 
        GKeyFile *file;
35
 
        GHashTable *values;
36
 
        GHashTable *aliases;
37
 
};
38
 
 
 
28
gchar *configuration_get_filename (void);
39
29
configuration_t* configuration_init (const gchar *path);
40
30
void configuration_free (configuration_t *config);
41
31