summaryrefslogtreecommitdiff
path: root/win32/sendmail.h
diff options
context:
space:
mode:
Diffstat (limited to 'win32/sendmail.h')
-rw-r--r--win32/sendmail.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/win32/sendmail.h b/win32/sendmail.h
index 82155b41d0..a40d4df1de 100644
--- a/win32/sendmail.h
+++ b/win32/sendmail.h
@@ -1,6 +1,8 @@
#if !defined(sendmail_h) /* Sentry, use file only if it's not already included. */
#define sendmail_h
+#ifndef NETWARE
#include <windows.h>
+#endif
#define HOST_NAME_LEN 256
#define MAX_APPNAME_LENGHT 100
@@ -39,9 +41,17 @@ char *GetSMErrorText(int index);
int MailConnect();
int PostHeader(char *, char *, char *, char *, char *);
+#ifndef NETWARE
int Post(LPCSTR);
+#else
+int Post(char *);
+#endif
int Ack();
+#ifndef NETWARE
unsigned long GetAddr(LPSTR szHost);
+#else
+unsigned long GetAddr(char * szHost);
+#endif