home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / UNIX / Mail / appnmail-1.8-Solaris / mailapp-utilities / MailBox.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-11-24  |  488 b   |  25 lines

  1. #import <appkit/appkit.h>
  2. #import <indexing/indexing.h>
  3.  
  4. @interface MailBox : Object <IXRecordTranscription>
  5.    {
  6.    char *name;
  7.    time_t mboxtime;
  8.    time_t toctime;
  9.    off_t mboxsize;
  10.    off_t tocsize;
  11.    int mboxfd,tocfd;
  12.    char *tocbuf,*mboxbuf;
  13.    int toclen,mboxlen;
  14.    }
  15.  
  16. +validateAllBoxes;
  17. +getBox:(const char *)name;
  18.  
  19. -finishReading;
  20. -source:aTranscriber didReadRecord:(unsigned int)aHandle;
  21. -source:aTranscriber willWriteRecord:(unsigned int)aHandle;
  22.  
  23. -(int)validateBox;
  24. @end
  25.