home *** CD-ROM | disk | FTP | other *** search
- ;module-definition file for SendDlg -- used by link4.exe
-
- NAME SendDlg ; application's module name
-
- DESCRIPTION 'Example Application for SendDlgItemMessage'
-
- STUB 'WINSTUB.EXE' ; Generates error message if application
- ; is run without Windows
-
- CODE MOVEABLE ; code can be moved in memory
-
- ;DATA must be MULTIPLE if program can be invoked more than once
-
- DATA MOVEABLE MULTIPLE
-
- HEAPSIZE 1024
- STACKSIZE 4096 ; recommended minimum for Windows applications
-
- ; All functions that will be called by any Windows routine
- ; MUST be exported.
-
- EXPORTS
- SendDlgWndProc @1 ; name of window processing function
- About @2 ; name of "About" processing function
- LineList @3 ; name of "LineList" processing function
-