forked from openslide/openslide
-
Notifications
You must be signed in to change notification settings - Fork 4
/
openslide-error.h
29 lines (25 loc) · 973 Bytes
/
openslide-error.h
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
/*
* OpenSlide, a library for reading whole slide image files
*
* Copyright (c) 2007-2013 Carnegie Mellon University
* All rights reserved.
*
* OpenSlide is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, version 2.1.
*
* OpenSlide 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with OpenSlide. If not, see
* <https://www.gnu.org/licenses/>.
*
*/
#ifndef OPENSLIDE_OPENSLIDE_ERROR_H_
#define OPENSLIDE_OPENSLIDE_ERROR_H_
/* Private error functions: for use only by external API */
void _openslide_propagate_error(openslide_t *osr, GError *err);
#endif