; module-definition file -- used by LINK.EXE NAME WMFDCODE ; application's module name DESCRIPTION 'Windows Metafile Decoder - by Dennis R. Crain' 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 and discarded/reloaded CODE PRELOAD MOVEABLE DISCARDABLE ;DATA must be MULTIPLE if program can be invoked more than once DATA PRELOAD MOVEABLE MULTIPLE SEGMENTS _TEXT MOVEABLE _WMFDCODE MOVEABLE DISCARDABLE _WMFMETA MOVEABLE DISCARDABLE _WMFDLG MOVEABLE DISCARDABLE _WMFPRINT MOVEABLE DISCARDABLE _CMNDLG MOVEABLE DISCARDABLE HEAPSIZE 5120 STACKSIZE 10000 ; recommended minimum for Windows applications ; All functions that will be called by any Windows routine ; MUST be exported. EXPORTS MainWndProc @1 About @2 WMFRecDlgProc @3 MetaEnumProc @4 HeaderDlgProc @5 ClpHeaderDlgProc @6 AldusHeaderDlgProc @7 EnumRangeDlgProc @8 ListDlgProc @9 PlayFromListDlgProc @10 AbortDlg @11 AbortProc @12