Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

62 lines
1.7 KiB

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