diff options
author | Leandro A. F. Pereira <leandro@hardinfo.org> | 2007-01-18 12:23:38 +0000 |
---|---|---|
committer | Leandro A. F. Pereira <leandro@hardinfo.org> | 2007-01-18 12:23:38 +0000 |
commit | 856428274dd3a217a5e813ce3d55fc7bcf4fd351 (patch) | |
tree | 894326e3da062abb20f5bd424010bedb465666ef /hardinfo2/syncmanager.h | |
parent | 77cc3adfb63d9ba837da2d81f87eb4fdc38fc340 (diff) |
More syncmanager stuff
Diffstat (limited to 'hardinfo2/syncmanager.h')
-rw-r--r-- | hardinfo2/syncmanager.h | 32 |
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); |