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

  1. ;module-definition file for yield -- used by link4.exe
  2.  
  3. NAME    Yield       ; application's module name
  4.  
  5. DESCRIPTION 'Example Application for Yield'
  6.  
  7. STUB    'WINSTUB.EXE' ; Generates error message if application
  8.                       ; is run without Windows
  9.  
  10. CODE    MOVEABLE      ; code can be moved in memory
  11.  
  12. ;DATA must be MULTIPLE if program can be invoked more than once
  13.  
  14. DATA    MOVEABLE MULTIPLE
  15.  
  16. HEAPSIZE  1024
  17. STACKSIZE 4096  ; recommended minimum for Windows applications
  18.  
  19. ; All functions that will be called by any Windows routine
  20. ; MUST be exported.
  21.  
  22. EXPORTS
  23.     YieldWndProc     @1  ; name of window processing function
  24.     About            @2  ; name of "About" processing function
  25.