/* This file is part of 8XI (TI-83 Plus) Format, a File Format plugin for Adobe Photoshop Copyright (C) 2006 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 */ #define TI8XI_FILETYPE '\?\?\?\?' #define TI8XI_ROWS 63 #define TI8XI_COLS 96 #define TI8XI_SIG "**TI83F*\032\012" #define TI_DESC_OFFSET 11 #define TI_DESC_BYTES 42 #define TI_HEADER_BYTES 74 #ifndef Rez #ifndef RC_INVOKED #include "world.h" #include "PIAbout.h" #include "PIFormat.h" #include "PIProperties.h" #include "str.h" #include "file_compat.h" OSErr read_start(FormatRecordPtr pb,long *data); OSErr read_continue(FormatRecordPtr pb,long *data); OSErr read_finish(FormatRecordPtr pb,long *data); void DoAbout(AboutRecordPtr prec); OSErr write_start(FormatRecordPtr pb,long *data); OSErr write_continue(FormatRecordPtr pb,long *data); OSErr write_finish(FormatRecordPtr pb,long *data); #endif #endif