home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 479a.lha / barn_v2.01 / source / reply.h < prev    next >
C/C++ Source or Header  |  1991-02-10  |  644b  |  28 lines

  1. /*
  2.  *    File Name:        reply.h
  3.  *    Project:        BARN - Bah's Amiga ReadNews.
  4.  *    Purpose:        Reply and Followup functions.
  5.  *    Author:            Jeff Van Epps
  6.  *    Created:        21 Oct 90
  7.  *    Last Modified:    21 Oct 90
  8.  *    Comments:
  9.  *    History:
  10.  *        21 Oct 90/JVE    Created.
  11.  */
  12.  
  13. # ifdef sun
  14.  
  15. extern void        Reply();
  16. extern void        Followup();
  17. extern void        IncludeArticle();
  18. extern void        Sign();
  19.  
  20. # else  /* amiga */
  21.  
  22. extern void        Reply( ARTICLE_INFO *article, int include );
  23. extern void        Followup( char *newsgroup, ARTICLE_INFO *article, int include );
  24. extern void        IncludeArticle( ARTICLE_INFO *article, FILE *output );
  25. extern void        Sign( FILE *output );
  26.  
  27. # endif /* sun/amiga */
  28.