home *** CD-ROM | disk | FTP | other *** search
/ Learn 3D Graphics Programming on the PC / Learn_3D_Graphics_Programming_on_the_PC_Ferraro.iso / rwwin / mixtest.de_ / mixtest.bin
Text File  |  1995-11-14  |  521b  |  22 lines

  1. NAME         MixTest
  2.  
  3. DESCRIPTION  'Wave mixer tester'
  4.  
  5. EXETYPE      WINDOWS       ; required for all Windows applications
  6.  
  7. STUB         'WINSTUB.EXE' ; Generates error message if application
  8.                ; is run without Windows
  9.  
  10. ;CODE can be moved in memory and discarded/reloaded
  11. CODE  PRELOAD MOVEABLE DISCARDABLE
  12.  
  13. ;DATA must be MULTIPLE if program can be invoked more than once
  14. DATA  PRELOAD MOVEABLE MULTIPLE
  15.  
  16.  
  17. HEAPSIZE     1024
  18.  
  19. ; All functions that will be called by any Windows routine
  20. ; MUST be exported.
  21.  
  22.