home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume25 / trash / part01 / symtab.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-03-22  |  384 b   |  26 lines

  1. typedef struct procent    procent;
  2. struct procent
  3. {
  4.     long        isym;
  5.     long        iline;
  6.     long        regmask;
  7.     short        regoffset;
  8.     short        frameoffset;
  9. };
  10.  
  11. typedef struct syment    syment;
  12. struct syment
  13. {
  14.     char        *n_name;
  15.     unsigned long    n_value;
  16.     int        n_scnum;
  17.     procent        *n_proc;
  18. };
  19.  
  20. typedef struct symtab    symtab;
  21. struct symtab
  22. {
  23.     syment        *st_tab;    /* The entries.        */
  24.     int        st_symcnt;    /* # of entries.    */
  25. };
  26.