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.
|
|
;==========================================================================; ; ; THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY ; KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE ; IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR ; PURPOSE. ; ; Copyright (c) 1992 - 1994 Microsoft Corporation. All Rights Reserved. ; ;--------------------------------------------------------------------------; ; ; acmapp32.def ; ; ; This is the module definition file... ; ; ;===========================================================================;
NAME ACMAPP32
EXETYPE WINDOWS
PROTMODE
CODE MOVEABLE DISCARDABLE LOADONCALL DATA MOVEABLE MULTIPLE PRELOAD
SEGMENTS _TEXT MOVEABLE PRELOAD INIT_TEXT MOVEABLE DISCARDABLE PRELOAD
;- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -; ; NOTE: some of the functions that are called in this application ; require a LOT of stack space: most notable are the COMMDLG functions ; (ie GetOpenFileName, etc). a stacksize of ~8k is probably good enough. ; for the player/recorder i use even more stack--so bump it to 16k. ;- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -;
HEAPSIZE 16384 STACKSIZE 16384
|