diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-03-15 06:33:59 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-03-15 06:33:59 +0000 |
commit | 524c4c96a47b4dde094cfbcdcf07434c9108e392 (patch) | |
tree | 3e3f874c8c48da62567dd26845469edf78da63e4 /plugins/YAMN/src/proto/pop3/pop3.h | |
parent | 45358c3507af7d4bb32c031eaa25708905effa91 (diff) |
added precompiled header
added version info
git-svn-id: http://svn.miranda-ng.org/main/trunk@4035 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/YAMN/src/proto/pop3/pop3.h')
-rw-r--r-- | plugins/YAMN/src/proto/pop3/pop3.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/plugins/YAMN/src/proto/pop3/pop3.h b/plugins/YAMN/src/proto/pop3/pop3.h index 4d49f80bec..c65dc2ee26 100644 --- a/plugins/YAMN/src/proto/pop3/pop3.h +++ b/plugins/YAMN/src/proto/pop3/pop3.h @@ -1,9 +1,6 @@ #ifndef __POP3_H
#define __POP3_H
-#include "../../debug.h"
-#include "../netlib.h" //NetLib client
-
#define DOTLINE(s) ((((s)[-2]=='\r') || ((s)[-2]=='\n')) && ((s)[-1]=='.') && (((s)[0]=='\r') || ((s)[0]=='\n') || ((s)[0]=='\0'))) // be careful, it's different to ESR's pop3.c ;-)
#define ENDLINE(s) (((s)[0]=='\r') || ((s)[0]=='\n')) //endline
#define OKLINE(s) (((s)[0]=='+') && (((s)[1]=='o') || ((s)[1]=='O')) && (((s)[2]=='k') || ((s)[2]=='K'))) // +OK
|