home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD v1.2 / amidev_cd_12.iso / devcon / sanfrancisco_1989 / sf-devcon89.1 / commodities / aztec / cxsupp / freeie.c < prev    next >
C/C++ Source or Header  |  1992-08-27  |  630b  |  29 lines

  1. /* freeie.c -- free chain of input events    */
  2.  
  3. /*
  4. Copyright (c) 1987, 1988, 1989 Jim Mackraz and I&I Computing.
  5.  
  6. Executables based on this information may be used in software
  7. for Commodore Amiga computers.  All other rights reserved.
  8. This information is provided "as is"; no warranties are made.
  9. All use is at your own risk, and no liability or responsibility
  10. is assumed.
  11. */
  12.  
  13. #include  <cx/cxusr.h>
  14.  
  15. /* free chain of input events    */
  16.  
  17. FreeIEvents(ie)
  18. register struct InputEvent *ie;
  19. {
  20.     register struct InputEvent *next;
  21.  
  22.     while (ie)
  23.     {
  24.         next = ie->ie_NextEvent;
  25.         FreeMem(ie, (LONG) sizeof (struct InputEvent) );
  26.         ie = next;
  27.     }
  28. }
  29.