38 lines
1.0 KiB
C
38 lines
1.0 KiB
C
#if !defined(__FIL_GF_h__)
|
|
#define __FIL_GF_h__
|
|
|
|
/***************************************************************************************
|
|
*** This Graphic Format is a format used RLE compression on 24 and 32 bits pictures ***
|
|
*** by using RRRRGGGGBBBB[AAAA] format. The RLE's code is found by scanning picture ***
|
|
*** and founding the userless bytes. ***
|
|
*** The GF is generate from BMP or TGA format, then the first line is the last line ***
|
|
***************************************************************************************/
|
|
|
|
/******************************************/
|
|
#if _MSC_VER >= 1000
|
|
#pragma once
|
|
#endif /* _MSC_VER >= 1000 */
|
|
/******************************************/
|
|
|
|
#if defined(__cplusplus)
|
|
extern "C"
|
|
{
|
|
#endif /* __cplusplus */
|
|
|
|
#include "CPA_Expt.h"
|
|
|
|
#undef EXTERN
|
|
#undef extern
|
|
#if !defined(D_FIL_Globals)
|
|
#define EXTERN extern
|
|
#else
|
|
#define EXTERN
|
|
#endif /* D_FIL_Globals */
|
|
|
|
|
|
#if defined(__cplusplus)
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
#endif /* __FIL_GF_h__ */
|