; =========================================================================== ; resgauge.def -- module definition file for the Resource Gauge application. ; =========================================================================== ; module name NAME ResGauge ; version control or copyright string DESCRIPTION 'Resource Gauge v1.0 -- (c) 1991, Richard Franklin Albury' ; required for all Windows applications EXETYPE WINDOWS ; generates an error message if the application is run without Windows STUB 'WINSTUB.EXE' ; code can be moved in memory and discarded/reloaded CODE PRELOAD MOVEABLE DISCARDABLE ; data must be MULTIPLE if program can be invoked more than once DATA PRELOAD MOVEABLE SINGLE ; size in bytes of the application's local heap HEAPSIZE 1024 ; size in bytes of the application's stack STACKSIZE 5120 ; recommended minimum for Windows is 5120 ; =================== ; end of resgauge.def ; ===================