home *** CD-ROM | disk | FTP | other *** search
/ Master Visual C++ 1.5 / MASTERVC15.ISO / vcprog / original / ch20 / picmenu / picmenu.def < prev    next >
Encoding:
Text File  |  1994-01-26  |  772 b   |  32 lines

  1. ; picmenu.def : Declares the module parameters for the application.
  2.  
  3. NAME         PICMENU
  4. DESCRIPTION  'PICMENU Windows Application'
  5. EXETYPE      WINDOWS
  6.  
  7. CODE         PRELOAD MOVEABLE DISCARDABLE
  8. DATA         PRELOAD MOVEABLE MULTIPLE
  9.  
  10. HEAPSIZE     1024   ; initial heap size
  11. ; Stack size is passed as argument to linker's /STACK option
  12.  
  13.  
  14. ;;;;;;;;;;;;;;;;;;;;;;;;;
  15. ; MY CODE STARTS HERE
  16. ;;;;;;;;;;;;;;;;;;;;;;;;;
  17.  
  18. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  19. ; sp_ functions from the TegoSND.DLL library
  20. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  21.  
  22. IMPORTS
  23. TegoSND.sp_OpenSession
  24. TegoSND.sp_PlaySnd
  25. TegoSND.sp_MouseOn
  26. TegoSND.sp_MouseOff
  27. TegoSND.sp_CloseSession
  28.  
  29. ;;;;;;;;;;;;;;;;;;;;;;;;;
  30. ; MY CODE ENDS HERE
  31. ;;;;;;;;;;;;;;;;;;;;;;;;;
  32.