summaryrefslogtreecommitdiff
path: root/hardinfo2/syncmanager.h
diff options
context:
space:
mode:
Diffstat (limited to 'hardinfo2/syncmanager.h')
-rw-r--r--hardinfo2/syncmanager.h32
1 files changed, 21 insertions, 11 deletions
diff --git a/hardinfo2/syncmanager.h b/hardinfo2/syncmanager.h
index 19025029..24f0a17d 100644
--- a/hardinfo2/syncmanager.h
+++ b/hardinfo2/syncmanager.h
@@ -1,3 +1,21 @@
+/*
+ * HardInfo - Displays System Information
+ * Copyright (C) 2003-2007 Leandro A. F. Pereira <leandro@linuxmag.com.br>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, version 2.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
#ifndef __SYNCMANAGER_H__
#define __SYNCMANAGER_H__
@@ -5,18 +23,10 @@
typedef struct _SyncEntry SyncEntry;
-typedef enum {
- SYNC_RECEIVE,
- SYNC_SEND,
- SYNC_BOTH
-} SyncDirection;
-
struct _SyncEntry {
- gchar *name;
- gchar *save_to;
- SyncDirection direction;
-
- gchar *(*get_data)(void);
+ gchar *name;
+ gchar *save_to;
+ gchar *(*get_data)(void);
};
void sync_manager_add_entry(SyncEntry *entry);