home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 334.lha / DkbAnim / showprioq.h < prev   
C/C++ Source or Header  |  1990-01-10  |  184b  |  12 lines

  1. struct q_entry {
  2.   short index;
  3.   short value;
  4.   };
  5.  
  6. struct prioq_struct {
  7.   struct q_entry *queue;
  8.   unsigned char *array;
  9.   unsigned int current_entry, queue_size, array_size;
  10.   };
  11.  
  12.