home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 October / Chip_2001-10_cd1.bin / zkuste / delphi / nastroje / d23456 / NSIS.EXE / Source / exehead / config.h < prev    next >
C/C++ Source or Header  |  2001-05-19  |  1KB  |  30 lines

  1. #ifndef NSIS_CONFIG_H
  2. #define NSIS_CONFIG_H
  3.  
  4. // NSIS_CONFIG_LOG enables the logging facility.
  5. // turning this on (by uncommenting it) adds about
  6. // 3kb, but can be useful in debugging your installers.
  7. // #define NSIS_CONFIG_LOG
  8.  
  9. // NSIS_CONFIG_UNINSTALL_SUPPORT enables the uninstaller
  10. // support. Comment it out if your installers don't need
  11. // uninstallers 
  12. // adds approximately 1.5kb.
  13. #define NSIS_CONFIG_UNINSTALL_SUPPORT
  14.  
  15. // NSIS_SUPPORT_NETSCAPEPLUGINS enables netscape plug-in install
  16. // and uninstall. Comment it out if you don't need it.
  17. // adds approximately 1kb
  18. #define NSIS_SUPPORT_NETSCAPEPLUGINS
  19.  
  20. // NSIS_SUPPORT_ACTIVEXREG enables activeX plug-in registration
  21. // and deregistration. Comment it out if you don't need it.
  22. // adds approximately 1kb
  23. #define NSIS_SUPPORT_ACTIVEXREG
  24.  
  25. // NSIS_SUPPORT_BGBG enables support for the blue (well, whatever
  26. // color you want) gradient background window. About 300 bytes.
  27. #define NSIS_SUPPORT_BGBG
  28.  
  29. #endif // NSIS_CONFIG_H
  30.