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
|
/* -*- c -*- */
/* -------------------------------------------------------------------- *
** copyright (c) 1995 ipvr stuttgart and thomas harrer
** -------------------------------------------------------------------- *
**
** libhelp
**
** a comprehensive hypertext help system for OSF/Motif(tm) applications.
** based on libhtmlw from NCSA Mosaic(tm) version 2.4
**
** written by thomas harrer
** e-mail: Thomas.Harrer@rus.uni-stuttgart.de
**
** -------------------------------------------------------------------- *
*h $Id: imageio.h,v 1.5 1995/06/28 12:59:30 thomas Exp $
** -------------------------------------------------------------------- *
**
*h module: imageio.h
**
** contents: header file for imageio
** contains prototype for ReadBitmap and MedianCut
**
** interface: #include "imageio.h"
**
** -------------------------------------------------------------------- *
** license and copying issues:
**
** this software is free; you can redistribute it and/or modify it
** under terms similar to the gnu general public license (version 1
** or any later version published by the free software foundation).
** see the file Licence for more details.
**
** 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.
** -------------------------------------------------------------------- */
#ifndef _IMAGEIO_H_
#define _IMAGEIO_H_ 1
/* for XColor */
#include <X11/Intrinsic.h>
/* -------------------------------------------------------------------- *
*G global prototypes
** -------------------------------------------------------------------- */
unsigned char* ReadBitmap (char*, int*, int*, XColor*, int*);
void MedianCut (unsigned char*, int*, int*, XColor*, int, int);
#endif /* !_IMAGEIO_H_ */
/* -------------------------------------------------------------------- *
*L Emacs:
** Local Variables:
** mode: c
** outline-regexp: "\*[HGPLT]"
** gh-language: "english"
** comment-column: 32
** eval: (outline-minor-mode t)
** End:
** -------------------------------------------------------------------- */
|