home *** CD-ROM | disk | FTP | other *** search
/ PC Media 23 / PC MEDIA CD23.iso / share / prog / anubis / generica.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-08-12  |  342 b   |  16 lines

  1. // GENERICA.H
  2. // (C) Anubis Software Agosta 1995
  3.  
  4. // Esta libreria proporciona los tipos comunes a la gestión de tipos
  5. // de todas las librerías sobre genericos:
  6. // PILAG.H COLAG.H LISTAG.H LISTAG1.H LISTAG2.H
  7.  
  8. #ifndef GENERICA.H
  9. #define GENERICA.H
  10.  
  11. typedef struct  {
  12.     void *Siguiente;
  13.     void *Apuntador;
  14. } TipoElemento;
  15.  
  16. #endif