; module-definition file for generic -- used by LINK.EXE NAME ICMTEST ; application's module name DESCRIPTION 'Sample Microsoft Windows Application' ;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 HEAPSIZE 1024 STACKSIZE 8192 ; All functions that will be called by any Windows routine ; MUST be exported. EXPORTS MainWndProc @1 ; name of window processing function dlgprcAbout @2 ; name of "About" processing function dlgprcDefineColorSpace @3 ; dlgprcAddLCS @4 ; PrintDlgProc @5 ; EnumICMProfilesCallback @6 ; enumerates gamut matching methods AbortProc @7 ;