home *** CD-ROM | disk | FTP | other *** search
/ Meeting Pearls 3 / Meeting_Pearls_III.iso / Pearls / dev / Misc / PetisTreasureBox / NewsSERV / protos.h < prev    next >
C/C++ Source or Header  |  1995-08-25  |  1KB  |  81 lines

  1. /* Prototypes for functions defined in
  2. delete.c
  3.  */
  4.  
  5. int DeleteSysEntry(struct ListHead * , char * , char * );
  6.  
  7. /* Prototypes for functions defined in
  8. parse.c
  9.  */
  10.  
  11. struct ListHead * ParseSysFile(char * );
  12.  
  13. int AddEntry(struct ListHead * , char * );
  14.  
  15. int ParseLine(struct ListHead * , struct __iobuf * );
  16.  
  17. /* Prototypes for functions defined in
  18. list.c
  19.  */
  20.  
  21. int ListSysFile(struct ListHead * , char * , struct __iobuf * );
  22.  
  23. /* Prototypes for functions defined in
  24. save.c
  25.  */
  26.  
  27. int SaveSysFile(char * , struct ListHead * );
  28.  
  29. /* Prototypes for functions defined in
  30. system.c
  31.  */
  32.  
  33. extern struct NetSupportLibrary * NetSupportBase;
  34.  
  35. int InitSystem(void);
  36.  
  37. void FreeSystem(void);
  38.  
  39. void __stdargs LogError(char * , ...);
  40.  
  41. void __stdargs LogFatalError(char * , ...);
  42.  
  43. void __stdargs LogInfo(char * , ...);
  44.  
  45. struct __iobuf * popen(char * , char * );
  46.  
  47. int pclose(struct __iobuf * );
  48.  
  49. char * FindConfig(char * , char * );
  50.  
  51. /* Prototypes for functions defined in
  52. rfc.c
  53.  */
  54.  
  55. void ParseAddress(char * );
  56.  
  57. /* Prototypes for functions defined in
  58. password.c
  59.  */
  60.  
  61. int CheckPassword(char * , char * );
  62.  
  63. /* Prototypes for functions defined in
  64. main.c
  65.  */
  66.  
  67. extern struct __iobuf * fh;
  68.  
  69. long main(int , char ** );
  70.  
  71. void CleanUp(void);
  72.  
  73. struct __iobuf * SendMail(char * , char * , char * );
  74.  
  75. /* Prototypes for functions defined in
  76. add.c
  77.  */
  78.  
  79. int AddSysEntry(struct ListHead * , char * , char * );
  80.  
  81.