home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / win_lrn / dialog / mapdlgr.def < prev    next >
Text File  |  1988-08-10  |  492b  |  18 lines

  1. NAME    MapDlgR
  2.  
  3. DESCRIPTION 'Sample Microsoft Windows Application'
  4.  
  5. STUB    'WINSTUB.EXE' ; Generates error message if application
  6.                       ; is run without Windows
  7.  
  8. CODE    MOVEABLE      ; code can be moved in memory
  9.  
  10. DATA    MOVEABLE MULTIPLE
  11.  
  12. HEAPSIZE  1024
  13. STACKSIZE 4096  ; recommended minimum for Windows applications
  14.  
  15. EXPORTS
  16.     MapDlgRectWndProc   @1  ; name of window processing function
  17.     About            @2  ; name of "About" processing function
  18.