tcp: Add APICall trace entry and move TRACEs into locked parts.
[haiku.git] / src / add-ons / translators / jpeg / exif_parser.h
blob9527c2c343a773924955fb838152c0545ba2cede
1 /*
2 * Copyright 2007, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 */
5 #ifndef EXIF_PARSER_H
6 #define EXIF_PARSER_H
9 #include <DataIO.h>
10 #include <TypeConstants.h>
12 class BMessage;
15 struct convert_tag {
16 uint16 tag;
17 type_code type;
18 const char* name;
21 status_t convert_exif_to_message(BPositionIO& source, BMessage& target);
22 status_t convert_exif_to_message_etc(BPositionIO& source, BMessage& target,
23 const convert_tag* tags, size_t tagCount);
25 #endif // EXIF_PARSER_H