home *** CD-ROM | disk | FTP | other *** search
/ vsiftp.vmssoftware.com / VSIPUBLIC@vsiftp.vmssoftware.com.tar / FREEWARE / FREEWARE40.ZIP / pine / c-client / sm_vms.c < prev    next >
C/C++ Source or Header  |  1994-01-30  |  586b  |  35 lines

  1. /*
  2.  * Program:    Subscription Manager, VMS version which is a dummy one.
  3.  */
  4. #define    NIL    0
  5.  
  6.  
  7. long sm_subscribe (mailbox)
  8. char *mailbox;
  9. {
  10.   return NIL;
  11. }
  12.  
  13. /* Unsubscribe from mailbox
  14.  * Accepts: mailbox name
  15.  * Returns: T on success, NIL on failure
  16.  */
  17.  
  18. long sm_unsubscribe (mailbox)
  19. char *mailbox;
  20. {
  21.   return NIL;
  22. }
  23.  
  24. /* Read subscription database
  25.  * Accepts: pointer to subscription database handle (handle NIL if first time)
  26.  * Returns: character string for subscription database or NIL if done
  27.  * Note - uses strtok() mechanism
  28.  */
  29.  
  30. char *sm_read (sdb)
  31. void **sdb;
  32. {
  33.   return NIL;
  34. }
  35.