libopenraw  0.3.7
types.h
1 /*
2  * libopenraw - types.h
3  *
4  * Copyright (C) 2006-2020 Hubert Figuière
5  *
6  * This library is free software: you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public License
8  * as published by the Free Software Foundation, either version 3 of
9  * the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library. If not, see
18  * <http://www.gnu.org/licenses/>.
19  */
20 
21 #ifndef LIBOPENRAW_TYPES_H_
22 #define LIBOPENRAW_TYPES_H_
23 
27 /* C99 standard */
28 #include <stdint.h>
29 
30 typedef struct _RawFile *ORRawFileRef;
31 typedef struct _RawData *ORRawDataRef;
32 typedef struct _BitmapData *ORBitmapDataRef;
33 typedef struct _Thumbnail *ORThumbnailRef;
34 typedef struct _IfdDir *ORIfdDirRef;
38 #endif
struct _RawData * ORRawDataRef
RawData reference.
Definition: types.h:31
struct _RawFile * ORRawFileRef
RawFile reference.
Definition: types.h:30
struct _Thumbnail * ORThumbnailRef
Thumbnail reference.
Definition: types.h:33
struct _IfdDir * ORIfdDirRef
IfdDir reference.
Definition: types.h:34
struct _BitmapData * ORBitmapDataRef
BitmapData reference.
Definition: types.h:32