home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / graphics / audio / acmapp / acmapp16.def < prev    next >
Text File  |  1997-10-05  |  1KB  |  46 lines

  1. ;==========================================================================;
  2. ;
  3. ;   THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  4. ;   KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  5. ;   IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
  6. ;   PURPOSE.
  7. ;
  8. ;   Copyright (C) 1992 - 1997 Microsoft Corporation.  All Rights Reserved.
  9. ;
  10. ;--------------------------------------------------------------------------;
  11. ;
  12. ;   acmapp16.def
  13. ;
  14. ;   Description:
  15. ;       This is the module definition file...
  16. ;
  17. ;
  18. ;===========================================================================;
  19.  
  20. NAME    ACMAPP16
  21.  
  22. DESCRIPTION 'Audio Compression Manager (ACM) Sample Application'
  23.  
  24. EXETYPE WINDOWS
  25.  
  26. PROTMODE
  27.  
  28. STUB    'WINSTUB.EXE'
  29.  
  30. CODE    MOVEABLE DISCARDABLE      LOADONCALL
  31. DATA    MOVEABLE MULTIPLE       PRELOAD
  32.  
  33. SEGMENTS _TEXT         MOVEABLE           PRELOAD
  34.      INIT_TEXT   MOVEABLE DISCARDABLE    PRELOAD
  35.  
  36.  
  37. ;- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -;
  38. ;   NOTE: some of the functions that are called in this application
  39. ;   require a LOT of stack space: most notable are the COMMDLG functions
  40. ;   (ie GetOpenFileName, etc). a stacksize of ~8k is probably good enough.
  41. ;   for the player/recorder i use even more stack--so bump it to 16k.
  42. ;- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -;
  43.  
  44. HEAPSIZE    16384
  45. STACKSIZE   16384
  46.