Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
1.3 KiB

  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 - 1994 Microsoft Corporation. All Rights Reserved.
  9. ;
  10. ;--------------------------------------------------------------------------;
  11. ;
  12. ; acmapp32.def
  13. ;
  14. ; ; This is the module definition file...
  15. ;
  16. ;
  17. ;===========================================================================;
  18. NAME ACMAPP32
  19. EXETYPE WINDOWS
  20. PROTMODE
  21. CODE MOVEABLE DISCARDABLE LOADONCALL
  22. DATA MOVEABLE MULTIPLE PRELOAD
  23. SEGMENTS _TEXT MOVEABLE PRELOAD
  24. INIT_TEXT MOVEABLE DISCARDABLE PRELOAD
  25. ;- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -;
  26. ; NOTE: some of the functions that are called in this application
  27. ; require a LOT of stack space: most notable are the COMMDLG functions
  28. ; (ie GetOpenFileName, etc). a stacksize of ~8k is probably good enough.
  29. ; for the player/recorder i use even more stack--so bump it to 16k.
  30. ;- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -;
  31. HEAPSIZE 16384
  32. STACKSIZE 16384