home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / SoundMusicDSP / Resound-2.5-MIHS / APIExamples / Zero / ZeroModule.h < prev    next >
Encoding:
Text File  |  1997-12-05  |  769 b   |  36 lines

  1. /*
  2. ZeroModule
  3. For Resound 2.2
  4. Sean Luke
  5. Jan 10 1995
  6.  
  7. A simple example module which zeroes out the selected sound, to get you
  8. started using Resound modules.  This code is discussed in Resound's Help
  9. facility, under the section "Building a Resound Module: A Walk-Though".
  10. For a more sophisticated module, see the API/Math directory.
  11.  
  12. INTEL READY
  13.  
  14.  
  15. Copyright (c) 1995 by Sean Luke
  16.  
  17. Permission to use, copy, modify, and distribute this material 
  18. for any purpose and without fee is hereby granted.  SEAN LUKE 
  19. MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY 
  20. OF THIS MATERIAL FOR ANY PURPOSE.  IT IS PROVIDED "AS IS", 
  21. WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.
  22. */
  23.  
  24.  
  25.  
  26.     #import "Module.h"
  27.  
  28.     @interface ZeroModule:Module
  29.     {
  30.     }
  31.  
  32.     - init;
  33.     - zeroSound:sender;
  34.  
  35.     @end
  36.