home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 7 / FreshFishVol7.bin / bbs / comm / cyberpager-1.5.lha / CyberPager / source / include / pager_lib.h < prev    next >
C/C++ Source or Header  |  1994-10-05  |  395b  |  25 lines

  1. #ifndef PAGER_LIB_H
  2. #define PAGER_LIB_H
  3.  
  4. #include <exec/types.h>
  5.  
  6. typedef struct {
  7.     STRPTR svc_Name;
  8.     STRPTR svc_Phone;
  9.     BOOL svc_Use8N1;
  10.     UBYTE svc_Password[16];
  11.     ULONG svc_BaudRate;
  12.     ULONG svc_MaxPageLen;
  13.     BOOL svc_MultiBlock;
  14. } PagerService_t;
  15.  
  16. typedef struct {
  17.     STRPTR als_Name;
  18.     STRPTR als_Service;
  19.     STRPTR als_PIN;
  20.     ULONG als_MaxMessageLen;
  21.     ULONG als_MaxPageLen;    
  22. } PagerAlias_t;
  23.  
  24. #endif
  25.