About.cpp 1.0 KB

12345678910111213141516171819202122232425
  1. //---------------------------------------------------------------------------
  2. // About.cpp : About pane text
  3. //---------------------------------------------------------------------------
  4. #include "About.h"
  5. // NB : If more text is to go in here don't forget to enlarge min/max
  6. extern char *_szAbout = {
  7. "\nCopyright (c) 2000 Andy Protano ([email protected])"\
  8. "\n Gerard Juyn ([email protected])"\
  9. "\n"\
  10. "\nLibmng website - www.libmng.com"
  11. "\nMNG Homepage - www.libpng.org/pub/mng"
  12. "\nPNG Homepage - www.libpng.org/pub/png"
  13. "\n"
  14. "\nThis program is based upon the orignal \'MngTree\' by Gerard Juyn"\
  15. "\nAuthor & current maintainer : Andy Protano ([email protected])"\
  16. "\n"\
  17. "\nThis software is based on libmng which in its turn is based on software by :"\
  18. "\n"\
  19. "\nIndependant JPEG Group - http://www.ijg.org"\
  20. "\nLcms (little CMS) library by Marti Maria Saguar - http://www.lcms.colorid.de"\
  21. "\nZlib - http://www.info-zip.org/pub/infozip/zlib"\
  22. };
  23. //---------------------------------------------------------------------------