Help.cpp 912 B

1234567891011121314151617181920212223
  1. //---------------------------------------------------------------------------
  2. // Help.cpp : Help pane text
  3. //---------------------------------------------------------------------------
  4. #include "Help.h"
  5. // NB : If more text is to go in here don't forget to enlarge min/max
  6. extern char *_szHelp = {
  7. "\nA MNG developers tool to display the chunk data of MNG/JNG/PNG files."\
  8. "\n"
  9. "\nMngDump - Version 1.0 - September 2000"\
  10. "\n"\
  11. "\n NOTE - This program comes with NO warranties whatsoever."\
  12. "\n"\
  13. "\nInstruction for use ... press the folder button and load a file !"\
  14. "\n"\
  15. "\nThe following chunks are (currently) unsupported :"\
  16. "\nIJNG, IPNG, JSEP, MaGN, MAGN, oFFs, pCAL, sCAL"\
  17. "\n"\
  18. "\nThe program will be periodically updated, inline with libmng's growth."\
  19. "\nPlease report any bugs, suggestions, etc to the maintainer."
  20. };
  21. //---------------------------------------------------------------------------