~ubuntu-branches/ubuntu/trusty/pcmanfm/trusty-proposed

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef _PREF_DLG_H_
#define _PREF_DLG_H_

#include <gtk/gtk.h>

G_BEGIN_DECLS

typedef enum {
    PREF_GENERAL,
    PREF_DESKTOP,
    PREF_VOLMAN,
    PREF_ADVANCED
}PrefDlgPage;

gboolean fm_edit_preference( GtkWindow* parent, int page );

G_END_DECLS

#endif