home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_02_09 / 2n09014a < prev    next >
Text File  |  1991-07-26  |  973b  |  33 lines

  1.  
  2. ; module-definition file for mledit - used by LINK.EXE
  3.  
  4. NAME         MLEdit        ; application's module name
  5.  
  6. DESCRIPTION  'Test prog for Multiline Edit Controls'
  7.  
  8. EXETYPE      WINDOWS       ; required for all Windows applications
  9.  
  10. STUB         'WINSTUB.EXE' ; Generates error message if application
  11.                            ; is run without Windows
  12.  
  13. ;CODE can be moved in memory and discarded/reloaded
  14. CODE  PRELOAD MOVEABLE DISCARDABLE
  15.  
  16. ;DATA must be MULTIPLE if program can be invoked more than once
  17. DATA  PRELOAD MOVEABLE MULTIPLE
  18.  
  19.  
  20. HEAPSIZE     5000               ; expands as required 
  21. STACKSIZE    10000         ; recommended minimum for Windows applications =5120
  22.  
  23.  
  24. ; All functions that will be called by any Windows routine
  25. ; MUST be exported.
  26.  
  27. EXPORTS
  28.         MainWndProc   @1   ; name of window processing function
  29.         TestDlg @2
  30.         EditWndProc     @3              ; name of subclassing WndProc - add to your .def
  31.  
  32.  
  33.