home *** CD-ROM | disk | FTP | other *** search
/ Current Shareware 1994 January / SHAR194.ISO / hamradio / netspy.zip / NODO.H < prev    next >
Text File  |  1989-07-24  |  850b  |  25 lines

  1. /*******************************************************
  2.  *     include  : nodo.h                               *
  3.  *     data     : 12/6/1989                            *
  4.  *     vers.    : 1.0                                  *
  5.  *     contenuto: definizione della struttura dati     *
  6.  *                nodo  utilizzata  nei due moduli     *
  7.  *                placet.c  e utility.c per tenere     *
  8.  *                traccia  della  situazione delle     *
  9.  *                stazioni sullo schermo.              *
  10.  *     note     :                                      *
  11.  *******************************************************/
  12.  
  13.  
  14. #define   LIBERO     0
  15. #define   LINEA      1
  16. #define   STAZIONE   5
  17. #define   PERIMETRO  6
  18.  
  19. struct  nodo {
  20.    byte  stato;
  21.    char  nome[10];
  22.    char  *link[8];
  23. };
  24.  
  25. typedef  struct nodo  nodo_t;