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

  1. ; sayhello.def : Declares the module parameters for the application.
  2.  
  3. NAME         SAYHELLO
  4. DESCRIPTION  'SAYHELLO 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. ; MY CODE STARTS HERE
  15. ;;;;;;;;;;;;;;;;;;;;;;;;;
  16.  
  17. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  18. ; sp_functions from the TegoSND.DLL library
  19. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  20.  
  21. IMPORTS
  22. TegoSND.sp_OpenSession
  23. TegoSND.sp_PlaySnd
  24. TegoSND.sp_MouseOn
  25. TegoSND.sp_MouseOff
  26. TegoSND.sp_CloseSession
  27.  
  28. ;;;;;;;;;;;;;;;;;;;;;;;;;
  29. ; MY CODE ENDS HERE
  30. ;;;;;;;;;;;;;;;;;;;;;;;;;
  31.  
  32.