2010-09-25 14:02:33 +00:00
|
|
|
// Ryzom - MMORPG Framework <http://dev.ryzom.com/projects/ryzom/>
|
|
|
|
// Copyright (C) 2010 Winch Gate Property Limited
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as
|
|
|
|
// published by the Free Software Foundation, either version 3 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 Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2010-05-06 00:08:41 +00:00
|
|
|
#ifndef _PIC_PRIVATE_H_
|
|
|
|
#define _PIC_PRIVATE_H_
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
typedef struct PIC_PICTURE
|
|
|
|
{
|
|
|
|
unsigned long ID;
|
|
|
|
unsigned long Width;
|
|
|
|
unsigned long Height;
|
|
|
|
unsigned long Depth;
|
2010-09-25 13:53:28 +00:00
|
|
|
char *pDatas;
|
|
|
|
char *pPal;
|
2010-05-06 00:08:41 +00:00
|
|
|
struct PIC_PICTURE *Next;
|
|
|
|
} PIC_PICTURE;
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// JPG
|
|
|
|
//
|
|
|
|
|
|
|
|
|
2010-09-25 13:53:28 +00:00
|
|
|
extern unsigned long Pic_JPG_Read( const char *FileName,
|
|
|
|
char **ppPal, char **ppDatas,
|
2010-05-06 00:08:41 +00:00
|
|
|
unsigned long *w, unsigned long *h);
|
|
|
|
|
2010-09-25 13:53:28 +00:00
|
|
|
extern unsigned long Pic_JPG_Write( const char *FileName,
|
2010-05-06 00:08:41 +00:00
|
|
|
unsigned long Qual,
|
2010-09-25 13:53:28 +00:00
|
|
|
char *pDatas,
|
2010-05-06 00:08:41 +00:00
|
|
|
unsigned long w, unsigned long h);
|
|
|
|
//
|
|
|
|
// TGA
|
|
|
|
//
|
2010-09-25 13:53:28 +00:00
|
|
|
extern unsigned long Pic_TGA_Read( const char *FileName,
|
|
|
|
char **ppPal, char **ppDatas,
|
2010-05-06 00:08:41 +00:00
|
|
|
unsigned long *pWidth, unsigned long *pHeight,
|
|
|
|
unsigned long *pDepth);
|
2010-09-25 13:53:28 +00:00
|
|
|
extern unsigned long Pic_TGA_Write( const char *FileName,
|
|
|
|
char *pPal, char *pDatas,
|
2010-05-06 00:08:41 +00:00
|
|
|
unsigned long w, unsigned long h, unsigned long d);
|
|
|
|
//
|
|
|
|
// BMP
|
|
|
|
//
|
2010-09-25 13:53:28 +00:00
|
|
|
extern unsigned long Pic_BMP_Read( const char *FileName,
|
|
|
|
char **ppPal, char **ppDatas,
|
2010-05-06 00:08:41 +00:00
|
|
|
unsigned long *pWidth, unsigned long *pHeight,
|
|
|
|
unsigned long *pDepth);
|
|
|
|
|
2010-09-25 13:53:28 +00:00
|
|
|
extern unsigned long Pic_BMP_Write( const char *FileName,
|
|
|
|
char *pPal, char *pDatas,
|
2010-05-06 00:08:41 +00:00
|
|
|
unsigned long w, unsigned long h, unsigned long d);
|
|
|
|
//
|
|
|
|
// System
|
|
|
|
//
|
|
|
|
extern void* Pic_malloc(unsigned long size);
|
|
|
|
extern void* Pic_calloc(unsigned long count, unsigned long size);
|
|
|
|
extern void Pic_free(void *memblock);
|
|
|
|
extern unsigned long Pic__msize(void *memblock);
|
2010-09-25 13:53:28 +00:00
|
|
|
extern void Pic_SetError(const char *msg, ...);
|
2010-05-06 00:08:41 +00:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#endif
|