home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / database / nyisam / compudex.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-01-23  |  401 b   |  24 lines

  1. /* File: maillst.h
  2. /* Copyright (c) 1994 by John Gambini
  3. */
  4.  
  5. #define MAILLST "maillst"
  6.  
  7. typedef struct _mail_rec
  8. {
  9.      long num; 
  10.     char name[30]; 
  11.     char addr1[30];
  12.     char addr2[30];
  13.     char city[25]; 
  14.     char state[2];
  15.     char zip[10];  
  16.     char phone[12];
  17.     char fax[12];  
  18.     char type[3];
  19. } MAIL_REC;
  20.  
  21.  
  22. extern void InitISAM( void );
  23. extern void Actions( int wData, int wStat, int fhdl );
  24.