xref: /haiku/src/add-ons/translators/rtf/convert.h (revision fa267963e0d734a8d419ab53e52b3d36df12285c)
19949213aSStephan Aßmus /*
29949213aSStephan Aßmus  * Copyright 2004-2005, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
39949213aSStephan Aßmus  * Distributed under the terms of the MIT License.
49949213aSStephan Aßmus  */
59949213aSStephan Aßmus #ifndef CONVERT_H
69949213aSStephan Aßmus #define CONVERT_H
79949213aSStephan Aßmus 
89949213aSStephan Aßmus #include <DataIO.h>
99949213aSStephan Aßmus 
10338b8dc3SIngo Weinhold #include "RTF.h"
11338b8dc3SIngo Weinhold 
129949213aSStephan Aßmus 
139949213aSStephan Aßmus extern status_t convert_to_stxt(RTF::Header &header, BDataIO &target);
149949213aSStephan Aßmus extern status_t convert_to_plain_text(RTF::Header &header, BPositionIO &target);
15*fa267963SEzo extern status_t convert_styled_text_to_rtf(
16*fa267963SEzo 	BPositionIO* source, BPositionIO* target);
17*fa267963SEzo extern status_t convert_plain_text_to_rtf(
18*fa267963SEzo 	BPositionIO& source, BPositionIO& target);
199949213aSStephan Aßmus 
209949213aSStephan Aßmus #endif	/* CONVERT_H */
21