home *** CD-ROM | disk | FTP | other *** search
/ CD Shareware Magazine 1996 December / CD_shareware_12-96.iso / DOS / Programa / CCDL122.ZIP / INCLUDE / LIST.H < prev    next >
Encoding:
C/C++ Source or Header  |  1995-02-21  |  281 b   |  14 lines

  1. #ifndef _LIST_H
  2. #define _LIST_H
  3.  
  4. /*
  5.  * Linked list type.  Used for filenames, module number list, segment lists
  6.  */
  7. typedef struct _list_ {
  8.     struct _list_ *link;        // Link to next element
  9.         void *data;                            // Generic data
  10. } LIST;
  11.  
  12. #include "list.p"
  13.  
  14. #endif _LIST_H