You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
koffice/filters/chalk/xcf/xcf/xcf-write.h

40 lines
1.4 KiB

/* The GIMP -- an image manipulation program
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
*
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef __XCF_WRITE_H__
#define __XCF_WRITE_H__
#include <tqstring.h>
#include <tqstringlist.h>
#include <tqfile.h>
// Write count integers to the file
TQ_UINT32 xcf_write_int32 (TQFile *fp, TQ_INT32 *data, TQ_INT32 count);
// Write count of floats to the file
TQ_UINT32 xcf_write_float (TQFile *fp, float *data, TQ_INT32 count);
// Write count chars to the file
TQ_UINT32 xcf_write_int8 (TQFile *fp, TQ_UINT8 *data, TQ_INT32 count);
// Write count zero-terminated strings to the file, each string preceded by its length as an integer
TQ_UINT32 xcf_write_string (TQFile *fp, TQCString *data, TQ_INT32 count);
#endif /* __XCF_WRITE_H__ */