home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / PJ8_3.ZIP / WINCEL.DEF < prev    next >
Text File  |  1990-01-26  |  712b  |  36 lines

  1. ; Definitions file for the Windows cellular automaton demo
  2. ;
  3. ; Written by Bill Hall
  4. ; 3665 Benton Street, #66
  5. ; Santa Clara, CA 95051
  6. ;
  7.  
  8. ; Program name
  9. NAME
  10.  
  11. ; Description string
  12. DESCRIPTION 'Windows cellular automaton demo'
  13.  
  14. ; Program to run if run from MS-DOS
  15. STUB 'Winstub.exe'
  16.  
  17. ; Heap and stack sizes
  18. HEAPSIZE    1024
  19. STACKSIZE    4096
  20.  
  21. ; Attributes of code and data segments
  22. CODE    MOVEABLE
  23. DATA    MOVEABLE MULTIPLE
  24.  
  25. ; Attributs of particular segments
  26. SEGMENTS
  27.     _RES PRELOAD MOVEABLE DISCARDABLE
  28.     _INIT LOADONCALL MOVEABLE DISCARDABLE
  29.     _MISC LOADONCALL MOVEABLE DISCARDABLE
  30.  
  31. ; Functions called by Windows
  32. EXPORTS
  33.     MainWndProc        @1
  34.     AboutBoxProc    @2
  35.     ParamBoxProc    @3
  36.