home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.mdf / Apps / Utilities / Unix / WhosOnFirst / Source / structs.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-12-26  |  309 b   |  11 lines

  1. struct record {
  2.     char name[10];        /* User name */
  3.     char tty[10];        /* TTY name */
  4.     char hostname[64];    /* Host Name */
  5.     int marked;        /* Referenced */
  6.     id windowPointer;    /* Pointer to window */
  7.     float x,y;        /* x,y position of icon (screen coords) */
  8.     struct record *next;    /* Pointer to next record in list */
  9.  
  10. };
  11.