home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c480 / 19.ddi / BIN / CL.DE_ / CL.DE
Encoding:
Text File  |  1993-02-08  |  1.7 KB  |  57 lines

  1. ;
  2. ; CL.DEF - Default .def file for C Windows applications
  3. ;
  4. ; Copyright (C) Microsoft Corp 1992.  All rights reserved.
  5. ;
  6.  
  7. NAME 
  8.  
  9. ;
  10. ; The NAME statement tells the linker that a Windows application is being
  11. ; built. The linker supplies the actual name of the application from the
  12. ; base name of the executable file. If a dynamic-link library (DLL) is being
  13. ; built the NAME statement should be replaced by a LIBARY statement.
  14. ;
  15.  
  16. EXETYPE        WINDOWS
  17.  
  18. ;
  19. ; The EXETYPE statement tells the linker to build a Windows executable
  20. ; file.  This statement should be used in all applications built with
  21. ; Visual C++ for Windows.
  22. ;
  23.  
  24. CODE           PRELOAD MOVABLE DISCARDABLE
  25. DATA           PRELOAD MOVABLE
  26.  
  27. ;
  28. ; The CODE and DATA statements set the attributes of the applications CODE and
  29. ; DATA segments.
  30. ;
  31.  
  32. HEAPSIZE       1024
  33. STACKSIZE      8096
  34.  
  35. ;
  36. ; The HEAPSIZE and STACKSIZE statements set the applications near heap and
  37. ; stack sizes.  The values specified are recomended for QuickWin applications.
  38. ;
  39.  
  40. ;
  41. ; Uncomment these lines for DLL module definition file model.
  42. ;
  43. ;EXPORTS
  44. ;WEP           PRIVATE
  45. ;
  46. ;SEGMENTS 'WEP_TEXT' FIXED PRELOAD
  47. ;
  48. ;
  49. ; The above section should be uncommented if this .DEF file is to be used as
  50. ; a model for a Visual C++ dynamic-link library (DLL) .DEF file. The WEP
  51. ; routine is included in the Visual C++ startup code, but the symbol must
  52. ; be explicitly exported. If a DLL already has a user-defined WEP routine,
  53. ; the routine should be renamed _WEP.  The startup code will call _WEP,
  54. ; if present, during DLL termination. For additional information concerning
  55. ; the WEP function, see the Visual C++ and Windows 3.1 SDK documentation.
  56. ;
  57.