home *** CD-ROM | disk | FTP | other *** search
- ;module-definition file for bago -- used by link4.exe
-
- NAME Bago ; application's module name
-
- DESCRIPTION 'Windows BOGGLE'
-
- EXETYPE WINDOWS ; No explicit STUB needed for 3.0
-
- ;DATA must be MULTIPLE if program can be invoked more than once
-
- DATA MOVEABLE MULTIPLE PRELOAD
-
- CODE MOVEABLE DISCARDABLE PRELOAD ; code can be moved in memory
-
- HEAPSIZE 0x9000 ; As big as possible
- STACKSIZE 0x4000 ; Fairly large to support recursion
- ; Also leave space for global variables
-
- ; All functions that will be called by any Windows routine
- ; MUST be exported.
-
- EXPORTS
- BagoWndProc @1 ; name of window processing function
- About @2 ; name of "About" processing function
- EditWord @3 ; Edit Word dialog box function
- EggWndProc @4 ; window processing for egg timer window
- InputDiag @5 ; General input dialog box
- ProWndProc @6 ; window processing for progress bar window
- CubeWndProc @7 ; window processing for cube buttons
- PicWndProc @8 ; window processing for pictoral display
-