summaryrefslogtreecommitdiff
path: root/src/trackerd/tracker-email.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/trackerd/tracker-email.h')
-rw-r--r--src/trackerd/tracker-email.h45
1 files changed, 0 insertions, 45 deletions
diff --git a/src/trackerd/tracker-email.h b/src/trackerd/tracker-email.h
deleted file mode 100644
index 2bd98784c..000000000
--- a/src/trackerd/tracker-email.h
+++ /dev/null
@@ -1,45 +0,0 @@
-/* Tracker
- * routines for emails
- * Copyright (C) 2006, Laurent Aguerreche (laurent.aguerreche@free.fr)
- *
- * This library 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; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library 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 library; if not, write to the
- * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- * Boston, MA 02110-1301, USA.
- */
-
-#ifndef _TRACKER_EMAIL_H_
-#define _TRACKER_EMAIL_H_
-
-#include "tracker-utils.h"
-
-#include "config.h"
-
-#include "tracker-db-sqlite.h"
-
-typedef gboolean (* TrackerMailInit) (void);
-typedef void (* TrackerMailFinalize) (void);
-typedef void (* TrackerMailWatchEmails) (DBConnection *db_con);
-typedef gboolean (* TrackerMailIndexFile) (DBConnection *db_con,
- FileInfo *info);
-typedef const gchar * (* TrackerMailGetName) (void);
-
-gboolean tracker_email_init (void);
-void tracker_email_add_service_directories (DBConnection *db_con);
-void tracker_email_end_email_watching (void);
-gboolean tracker_email_file_is_interesting (FileInfo *info);
-gboolean tracker_email_index_file (DBConnection *db_con, FileInfo *info);
-const gchar * tracker_email_get_name (void);
-
-
-#endif