home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / UNIX / Mail / appnmail-1.8-Solaris / mailapp-utilities / MailMessage.h < prev    next >
Encoding:
Text File  |  1996-11-24  |  743 b   |  35 lines

  1. #import <appkit/appkit.h>
  2. #import <indexing/indexing.h>
  3.  
  4. @interface MailMessage : Object <IXRecordTranscription>
  5.    {
  6.    id box;
  7.    unsigned int pos;
  8.    unsigned int crc;
  9.    unsigned short len;
  10.    }
  11.  
  12. -finishReading;
  13. -source:aTranscriber didReadRecord:(unsigned int)aHandle;
  14. -source:aTranscriber willWriteRecord:(unsigned int)aHandle;
  15.  
  16. -initInBox:(id)nbox at:(unsigned int)npos;
  17. -(BOOL)validate;
  18.  
  19. -(id)box;
  20. -(unsigned short)len;
  21. -(unsigned int)position;
  22.  
  23. -(const char *)header:(const char *)header;
  24.  
  25. -(const char *)messageHeaders;
  26. -(const char *)messageContent;
  27.  
  28. -(const char *)messageSubject;
  29. -(const char *)messageFrom;
  30. -(const char *)messageTo;
  31. -(const char *)messageDate;
  32. -(const char *)messageId;
  33. -(const char *)messageNextReference;
  34. @end
  35.