; module-definition file for generic -- used by LINK.EXE NAME VerStamp ;application's module name DESCRIPTION 'Version Stamp Sample Application' EXETYPE WINDOWS ;required for all Windows applications STUB 'WINSTUB.EXE' ;Generates error message if application ;is run without Windows ;CODE can be moved in memory CODE PRELOAD MOVEABLE DISCARDABLE ;and discarded/reloaded ;DATA must be MULTIPLE if program DATA PRELOAD MOVEABLE MULTIPLE ;can be invoked more than once HEAPSIZE 2048 STACKSIZE 6044 ;recommended minimum for Windows applications ;All functions that will be called ;by any Windows routine MUST be EXPORTS ;exported. WndProc @1 ;name of window processing function About @2 ;name of "About" processing function MoreVerInfo @3 ;dialog for More Info button