home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / win_lrn / window / getcrect.def < prev    next >
Encoding:
Text File  |  1988-08-11  |  577 b   |  22 lines

  1. NAME    GetCRect
  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 must be MULTIPLE if program can be invoked more than once
  11.  
  12. DATA    MOVEABLE MULTIPLE
  13.  
  14. HEAPSIZE  1024
  15. STACKSIZE 4096  ; recommended minimum for Windows applications
  16.  
  17. ; All functions that will be called by any Windows routine
  18. ; MUST be exported.
  19.  
  20. EXPORTS
  21.     GetCRectWndProc   @1  ; name of window processing function
  22.