aboutsummaryrefslogtreecommitdiff
path: root/libsylph/folder.h
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2014-04-18 06:26:43 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2014-04-18 06:26:43 +0000
commit26b2f9567dc0bd7b70e6cc66eee800a1e0d89b73 (patch)
tree3eb93151b98eabb35e7c52b7ea6e6a79648227bd /libsylph/folder.h
parentd6433225cb188bace23a80686df3be09edaa6036 (diff)
wrapped time_t as stime_t. stime_t will be 32-bit on win32 for backward compatibility.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@3386 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'libsylph/folder.h')
-rw-r--r--libsylph/folder.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/libsylph/folder.h b/libsylph/folder.h
index 5a9e9669..ef9eda28 100644
--- a/libsylph/folder.h
+++ b/libsylph/folder.h
@@ -20,6 +20,10 @@
#ifndef __FOLDER_H__
#define __FOLDER_H__
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
#include <glib.h>
#include <time.h>
@@ -127,6 +131,7 @@ typedef void (*FolderDestroyNotify) (Folder *folder,
#include "prefs_account.h"
#include "session.h"
#include "procmsg.h"
+#include "utils.h"
struct _Folder
{
@@ -272,7 +277,7 @@ struct _FolderItem
gchar *name; /* UTF-8 */
gchar *path; /* UTF-8 */
- time_t mtime;
+ stime_t mtime;
gint new;
gint unread;