home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / INTERNET / USENET / PAPERBOY / SOURCE.ZIP / MSGS.H < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-02  |  1.5 KB  |  40 lines

  1. /*     msgs.h -- prototypes for msgs.c
  2.     This file is part of Paperboy, an offline mail/newsreader for Windows
  3.     Copyright (C) 1994  Michael H. Vartanian
  4.         vart@clark.net
  5.  
  6.     This program is free software; you can redistribute it and/or modify
  7.     it under the terms of the GNU General Public License as published by
  8.     the Free Software Foundation; either version 2 of the License, or
  9.     (at your option) any later version.
  10.  
  11.     This program is distributed in the hope that it will be useful,
  12.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.     GNU General Public License for more details.
  15.  
  16.     You should have received a copy of the GNU General Public License
  17.     along with this program; if not, write to the Free Software
  18.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19. */
  20. #ifndef HMSGS
  21. #define HMSGS
  22.  
  23. #include "structs.h"
  24.  
  25. int             DLLFUNC GetNumMsgs (int index);
  26. char *  DLLFUNC GetSubject (int areaindex, int msgindex);
  27. char *  DLLFUNC GetAuthor (int areaindex, int msgindex);
  28. char *  DLLFUNC GetDate (int areaindex, int msgindex);
  29. int             DLLFUNC GetMsg (int areaindex, int msgindex);
  30. void    DLLFUNC Rot13Msg (void);
  31. int             DLLFUNC GetNumLines (void);
  32. char *  DLLFUNC GetLine (int line);
  33. int             DLLFUNC GetInfo (void);
  34. int extractvalue (char *, char *, char **);
  35. int parsemsg (struct llareas *);
  36. int getheaders (FILE *, struct llareas *);
  37. char * DLLFUNC GetHeader (char * header);
  38.  
  39. #endif
  40.