Updated Macedonian Translation <arangela@cvs.gnome.org>
[rhythmbox.git] / sources / rb-import-errors-source.h
blob2c77c63846432d3de2f9e3a80bb0f9a4f9550f44
1 /*
2 * Copyright (C) 2006 Jonathan Matthew <jonathan@kaolin.wh9.net>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 #ifndef __RB_IMPORT_ERRORS_SOURCE_H
21 #define __RB_IMPORT_ERRORS_SOURCE_H
23 #include "rb-shell.h"
24 #include "rb-source.h"
25 #include "rb-library-source.h"
27 G_BEGIN_DECLS
29 #define RB_TYPE_IMPORT_ERRORS_SOURCE (rb_import_errors_source_get_type ())
30 #define RB_IMPORT_ERRORS_SOURCE(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), RB_TYPE_IMPORT_ERRORS_SOURCE, RBImportErrorsSource))
31 #define RB_IMPORT_ERRORS_SOURCE_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), RB_TYPE_IMPORT_ERRORS_SOURCE, RBImportErrorsSourceClass))
32 #define RB_IS_IMPORT_ERRORS_SOURCE(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), RB_TYPE_IMPORT_ERRORS_SOURCE))
33 #define RB_IS_IMPORT_ERRORS_SOURCE_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), RB_TYPE_IMPORT_ERRORS_SOURCE))
34 #define RB_IMPORT_ERRORS_SOURCE_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), RB_TYPE_IMPORT_ERRORS_SOURCE, RBImportErrorsSourceClass))
36 typedef struct RBImportErrorsSourcePrivate RBImportErrorsSourcePrivate;
38 typedef struct
40 RBSource parent;
42 RBImportErrorsSourcePrivate *priv;
43 } RBImportErrorsSource;
45 typedef struct
47 RBSourceClass parent;
48 } RBImportErrorsSourceClass;
50 GType rb_import_errors_source_get_type (void);
52 RBSource * rb_import_errors_source_new (RBShell *shell,
53 RBLibrarySource *library_source);
55 G_END_DECLS
57 #endif /* __RB_IMPORT_ERRORS_SOURCE_H */