home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / wpj_mag / wpjv1n8.zip / GDI.ZIP / PBALL.ZIP / PBALL.DEF < prev    next >
Text File  |  1993-08-09  |  739b  |  26 lines

  1. ; module-definition file for generic
  2.  
  3. NAME          HELLO       ; application's module name
  4.  
  5. DESCRIPTION  'Sample Microsoft Windows Application'
  6.  
  7. EXETYPE       WINDOWS       ; required for all Windows applications
  8.  
  9. PROTMODE
  10.  
  11. ;CODE can be moved in memory and discarded/reloaded
  12. CODE  PRELOAD MOVEABLE DISCARDABLE
  13.  
  14. ;DATA must be MULTIPLE if program can be invoked more than once
  15. DATA  PRELOAD MOVEABLE MULTIPLE
  16.  
  17. HEAPSIZE     1024
  18. STACKSIZE    5120           ; recommended minimum for Windows applications
  19.  
  20. ; All functions that will be called by any Windows routine
  21. ; MUST be exported.
  22.  
  23. EXPORTS
  24.     MainWndProc   @1        ; name of window processing function
  25.     About         @2        ; name of "About" processing function
  26.