/usr/include/hdf/dfufp2i.h is in libhdf4-alt-dev 4.2r4-12build1.
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 | /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright by The HDF Group. *
* Copyright by the Board of Trustees of the University of Illinois. *
* All rights reserved. *
* *
* This file is part of HDF. The full HDF copyright notice, including *
* terms governing use, modification, and redistribution, is contained in *
* the files COPYING and Copyright.html. COPYING can be found at the root *
* of the source code distribution tree; Copyright.html can be found at *
* http://hdfgroup.org/products/hdf4/doc/Copyright.html. If you do not have *
* access to either file, you may request a copy from help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* $Id: dfufp2i.h 4932 2007-09-07 17:17:23Z bmribler $ */
#ifndef DFUFP2IM_H /* avoid re-inclusion */
#define DFUFP2IM_H
/* Input structure */
typedef struct
{
int32 hdim; /* horizontal dimension of input data */
int32 vdim; /* vertical dimension of input data */
intn is_pal; /* flag to tell whether there is a palette */
intn is_vscale; /* flag telling whether vertical scale included */
intn is_hscale; /* flag telling whether horizonatal scale included */
intn ct_method; /* color transform method: EXPAND or INTERP */
float32 max; /* max value of data */
float32 min; /* min value of the data */
float32 *hscale; /* horizontal scale */
float32 *vscale; /* vertical scale */
float32 *data; /* floating point data */
}
Input;
/* Output structure */
typedef struct
{
int32 hres; /* horizontal resolution of image */
int32 vres; /* vertical resolution of image */
intn compress; /* compression scheme */
char outfile[32]; /* output file name */
uint8 *image; /* Image */
uint8 *palette; /* Palette */
}
Output;
/*----------------------------------------------------------------------------*/
/* Function Prototypes */
#if defined c_plusplus || defined __cplusplus
extern "C"
{
#endif /* c_plusplus || __cplusplus */
/* prototypes for dfufp2im.c */
#ifdef OLD_WAY
extern int duif2i_(int32 *hdim, int32 *vdim, float32 *max, float32 *min,
float32 hscale[], float32 vscale[], float32 data[],
_fcd palette, _fcd outfile, int *ct_method, int32 *hres,
int32 *vres, int *compress, int *lenfn);
extern int DFUfptoimage(int32 hdim, int32 vdim, float32 max, float32 min,
float32 *hscale, float32 *vscale, float32 *data,
uint8 *palette, char *outfile, int ct_method,
int32 hres, int32 vres, int compress);
#endif
extern int process
(Input * in, Output * out);
extern int generate_scale
(int32 dim, float32 *scale);
extern int convert_interp
(Input * in, Output * out);
extern int pixrep_scaled
(Input * in, Output * out);
extern int compute_offsets
(float32 *scale, int32 dim, int32 *offsets, int32 res);
extern int pixrep_simple
(Input * in, Output * out);
#if defined c_plusplus || defined __cplusplus
}
#endif /* c_plusplus || __cplusplus */
#endif /* DFUFP2IM_H */
|