aboutsummaryrefslogtreecommitdiff
path: root/libsylph/pop.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/pop.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/pop.h')
-rw-r--r--libsylph/pop.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/libsylph/pop.h b/libsylph/pop.h
index c3e67e89..050caf52 100644
--- a/libsylph/pop.h
+++ b/libsylph/pop.h
@@ -29,6 +29,7 @@
#include "session.h"
#include "prefs_account.h"
+#include "utils.h"
typedef struct _Pop3MsgInfo Pop3MsgInfo;
typedef struct _Pop3Session Pop3Session;
@@ -99,7 +100,7 @@ struct _Pop3MsgInfo
{
gint size;
gchar *uidl;
- time_t recv_time;
+ stime_t recv_time;
guint received : 1;
guint deleted : 1;
};
@@ -132,7 +133,7 @@ struct _Pop3Session
gboolean new_msg_exist;
gboolean uidl_is_valid;
- time_t current_time;
+ stime_t current_time;
Pop3ErrorValue error_val;
gchar *error_msg;