/* This file is part of "psdrecover", a File Format plugin for Adobe Photoshop Copyright (C) 2007-2011 Toby Thain, toby@telegraphics.com.au This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ /* 15-Apr-2007: 0.1b1 started 19-Apr-2007: 0.1b1 released for Mac/CS2 & Mac/CS3 0.1b2 fixes transparency bug 0.1b3 Win32 release 20-Apr-2007: 0.2b1 process by chunks rather than whole channels; MacOS classic release 25-Oct-2007: 1.0b1 update for psdparse r234+ (renamed additional.c -> extra.c) 14-Nov-2007: 1.0b2 include project for CodeWarrior 7 27-Feb-2011: 1.1b1 port to Mac CS5, update to latest psdparse (sponsored by Pixar, Inc.) 12-Mar-2011: 1.1b2 new release with some more sanity checks */ #define VERSION_STR "1.1b2" #define VERSION_NUM 1,0x10,beta,2 #define VERS_RSRC VERSION_NUM,verAustralia,VERSION_STR,"PSD Extract/Recover " VERSION_STR /* development = 0x20, alpha = 0x40, beta = 0x60, final = 0x80 */ /* formatted for Win32 VERSIONINFO resource */ #define VI_VERS_NUM 1,1,0x60,2 #define VI_FLAGS VS_FF_PRERELEASE /* 0 for final, or any of VS_FF_DEBUG,VS_FF_PATCHED,VS_FF_PRERELEASE,VS_FF_PRIVATEBUILD,VS_FF_SPECIALBUILD */ #define VI_COMMENTS "Beta.\r\n\r\nPlease contact support@telegraphics.com.au with any bug reports, suggestions or comments.\0" /* null terminated Comments field */ /* wildcard signature in resources */ #define ANY ' '