Source code of Windows XP (NT5)
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.

46 lines
1.1 KiB

  1. [settings]
  2. ; settings in this section apply to all apps, unless over-ridden in the individual
  3. ; sections below.
  4. ; Use the following to have profiling initially off
  5. ; profile = 0
  6. ; Use the following (or nothing) to have profiling initially on
  7. ; profile = 1
  8. profile = 1
  9. ; Use the following to disable profiling
  10. ; profile = never
  11. ; Use the following to specify a different name for the .mea file
  12. ; output = other.mea
  13. output = itss.mea
  14. ; Use the following to turn off import function patching (default is on)
  15. ; imports = 0
  16. ; MaxMeaSize setting specfies the maximum size allowed for the
  17. ; .MEA file to be created. Value is in megabytes. Default is 32
  18. MaxMeaSize=100
  19. ; CycleSpeed specifies clock cycle speed (in Mhz)
  20. CycleSpeed=200
  21. pages = never
  22. ;pages = all
  23. [word96]
  24. ;for Word96, only detect new pages touched. Output file is
  25. ; word96t.mea, and has a max size of 100 MB
  26. Pages=new
  27. output=word96t.mea
  28. MaxMeaSize=100
  29. [excel96]
  30. ; for excel96, profiling is initially on. Report all pages touched (default).
  31. ; Output file has a max size of 50 MB (from [settings] section). Don't patch imports.
  32. profile=1
  33. Pages=All
  34. imports=0