home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / progc / c_source.arj / IIBDB.H < prev   
Encoding:
C/C++ Source or Header  |  1990-09-06  |  1.2 KB  |  48 lines

  1. #include "iibdb.ext"
  2.  
  3. struct ttl_info {
  4.                   int  pg_num;
  5.                   int  t_row;
  6.                   int  t_column;
  7.                   char ttl_title[80];
  8.                 } ;
  9.  
  10. struct fld_info {
  11.                   int  pg_num;
  12.                   int  t_row;
  13.                   int  t_column;
  14.                   int  row;
  15.                   int  column;
  16.                   int  length;
  17.                   int  changed;
  18.                   int  cur_pos;
  19.                   int  input_count;
  20.                   char fld_type;
  21.                   char *fld_title;
  22.                   char *fld_buffer;
  23.                 } ;
  24.  
  25. struct page_info {
  26.                    int  first_fld;
  27.                    int  last_fld;
  28.                  } ;
  29.  
  30. struct list_info { char id[7];
  31.                    char name[31];
  32.                  } ;
  33.  
  34. struct file_info {
  35.                    struct list_info *list;
  36.                    int list_count;
  37.                    int return_field;
  38.                    char message[78];
  39.                  } ;
  40.  
  41. struct lookup_file {
  42.                    int  field_number;
  43.                    char file_name[78];
  44.                  } ;
  45.  
  46. struct file_info *fld_file;
  47. struct lookup_file *lookup_table;
  48.