Message-Id: <1.5.4.16.19960721215250.2267a3f6@mail.heirich.in-berlin.de>
X-Mailer: Windows Eudora Light Version 1.5.4 (16)
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Date: Sun, 21 Jul 1996 23:52:50 +0200
To: winvn@news.ksc.nasa.gov
From: Peter Heirich <peter@heirich.in-berlin.de>
Subject: WinVN 0.99.8-b3 Bug found
Sender: owner-winvn@news.ksc.nasa.gov
Precedence: bulk

I try to compile WinVN with my Watcom 10.5a. The compiler has found a bug in
the Source.
Hope i've taken the current source from ftp.ksc.nasa.gov.


BOOL FAR PASCAL
WinVnAttachDlg (HWND hDlg, unsigned iMessage, WPARAM wParam, LPARAM lParam)
{
  static TypAttachment *thisAttach;
  int i, select;
  extern char *ContentTypes[NUM_CONTENT_TYPES];
  extern  char *EncodingTypes[NUM_CONTENT_TYPES];


should be:


BOOL FAR PASCAL
WinVnAttachDlg (HWND hDlg, unsigned iMessage, WPARAM wParam, LPARAM lParam)
{
  static TypAttachment *thisAttach;
  int i, select;
  extern char *ContentTypes[NUM_CONTENT_TYPES];
  extern  char *EncodingTypes[NUM_ENCODING_TYPES];

because EncodingTypes ist declared as this in wvglob.h

Regards Peter

