/usr/include/fosgra.h is in fosfat-dev 0.4.0-13-ged091bb-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 | /*
* FOS libfosgra: Smaky [.IMAGE|.COLOR] decoder
* Copyright (C) 2009-2010 Mathieu Schroeter <mathieu.schroeter@gamesover.ch>
*
* Thanks to Pierre Arnaud for his help and the documentation
* And to Epsitec SA for the Smaky computers
*
* This file is part of Fosfat.
*
* This library 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 3 of the License, or
* (at your option) any later version.
*
* This library 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, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef FOSGRA_H
#define FOSGRA_H
/**
* \file fosgra.h
*
* libfosgra public API header.
*/
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
#include <inttypes.h>
#include <fosfat.h>
/**
* \brief Get the color RGB24 from a .COLOR index.
*
* \param[in] fosfat disk handle.
* \param[in] path location on the FOS disk.
* \param[in] idx color index in map.
* \return the color in RGB24.
*/
uint32_t fosgra_color_get (fosfat_t *fosfat, const char *path, uint8_t idx);
/**
* \brief Get decoded .IMAGE buffer.
*
* \param[in] fosfat disk handle.
* \param[in] path location on the FOS disk.
* \param[in] offset from where (in bytes) in the data.
* \param[in] size how many bytes.
* \return NULL if error or return the buffer.
*/
uint8_t *fosgra_get_buffer (fosfat_t *fosfat,
const char *path, int offset, int size);
/**
* \brief Get informations on the .IMAGE.
*
* \param[in] fosfat disk handle.
* \param[in] path location on the FOS disk.
* \param[out] x image width.
* \param[out] y image height.
* \param[out] bpp bits per pixel.
*/
void fosgra_get_info (fosfat_t *fosfat,
const char *path, uint16_t *x, uint16_t *y, uint8_t *bpp);
/**
* \brief Test if the file is a .IMAGE.
*
* \param[in] fosfat disk handle.
* \param[in] path location on the FOS disk.
*/
int fosgra_is_image (fosfat_t *fosfat, const char *path);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* FOSGRA_H */
|