OXIESEC PANEL
- Current Dir:
/
/
usr
/
include
/
x86_64-linux-gnu
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/28/2024 06:50:42 AM
rwxr-xr-x
📄
a.out.h
4.25 KB
05/03/2022 10:19:39 AM
rw-r--r--
📁
asm
-
05/09/2024 07:14:21 AM
rwxr-xr-x
📁
atlas
-
10/28/2024 06:50:17 AM
rwxr-xr-x
📁
bits
-
01/31/2023 12:30:37 PM
rwxr-xr-x
📁
c++
-
01/31/2023 12:38:15 PM
rwxr-xr-x
📄
cblas-atlas.h
33.17 KB
09/13/2017 08:29:27 PM
rw-r--r--
📄
cblas.h
33.17 KB
09/13/2017 08:29:27 PM
rw-r--r--
📄
clapack.h
9.48 KB
09/13/2017 08:29:27 PM
rw-r--r--
📄
expat_config.h
3.43 KB
11/18/2022 10:57:30 AM
rw-r--r--
📄
fpu_control.h
3.5 KB
05/03/2022 10:19:39 AM
rw-r--r--
📁
gnu
-
01/31/2023 12:30:37 PM
rwxr-xr-x
📄
ieee754.h
4.79 KB
05/03/2022 10:19:39 AM
rw-r--r--
📄
jconfig.h
2.11 KB
09/21/2022 06:07:11 PM
rw-r--r--
📁
libavcodec
-
10/28/2024 06:50:18 AM
rwxr-xr-x
📁
libavformat
-
10/28/2024 06:50:19 AM
rwxr-xr-x
📁
libavresample
-
10/28/2024 06:50:19 AM
rwxr-xr-x
📁
libavutil
-
10/28/2024 06:50:17 AM
rwxr-xr-x
📁
libswresample
-
10/28/2024 06:50:17 AM
rwxr-xr-x
📁
libswscale
-
10/28/2024 06:50:35 AM
rwxr-xr-x
📁
python3.6m
-
05/09/2024 06:57:56 AM
rwxr-xr-x
📁
sys
-
01/31/2023 12:30:37 PM
rwxr-xr-x
📄
tiff.h
35.14 KB
03/03/2023 04:24:30 PM
rw-r--r--
📄
tiffconf.h
3.35 KB
03/03/2023 04:24:30 PM
rw-r--r--
📄
tiffio.h
22.68 KB
03/03/2023 04:24:30 PM
rw-r--r--
📄
tiffio.hxx
1.66 KB
03/03/2023 04:24:30 PM
rw-r--r--
📄
tiffvers.h
410 bytes
03/03/2023 04:24:30 PM
rw-r--r--
📄
unixodbc_conf.h
982 bytes
03/26/2018 02:37:19 PM
rw-r--r--
Editing: tiffio.hxx
Close
/* $Id: tiffio.hxx,v 1.3 2010-06-08 18:55:15 bfriesen Exp $ */ /* * Copyright (c) 1988-1997 Sam Leffler * Copyright (c) 1991-1997 Silicon Graphics, Inc. * * Permission to use, copy, modify, distribute, and sell this software and * its documentation for any purpose is hereby granted without fee, provided * that (i) the above copyright notices and this permission notice appear in * all copies of the software and related documentation, and (ii) the names of * Sam Leffler and Silicon Graphics may not be used in any advertising or * publicity relating to the software without the specific, prior written * permission of Sam Leffler and Silicon Graphics. * * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. * * IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR * ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, * WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE * OF THIS SOFTWARE. */ #ifndef _TIFFIO_HXX_ #define _TIFFIO_HXX_ /* * TIFF I/O library definitions which provide C++ streams API. */ #include <iostream> #include "tiff.h" extern TIFF* TIFFStreamOpen(const char*, std::ostream *); extern TIFF* TIFFStreamOpen(const char*, std::istream *); #endif /* _TIFFIO_HXX_ */ /* vim: set ts=8 sts=8 sw=8 noet: */ /* * Local Variables: * mode: c++ * c-basic-offset: 8 * fill-column: 78 * End: */