File: convert.h

package info (click to toggle)
lloconv 6.1.3-1
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 496 kB
  • sloc: sh: 1,384; cpp: 788; makefile: 10
file content (21 lines) | stat: -rw-r--r-- 627 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* convert.h - Convert documents using LibreOfficeKit
 *
 * Copyright (C) 2015,2016,2025 Olly Betts
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */

#ifndef INCLUDED_CONVERT_H
#define INCLUDED_CONVERT_H

extern const char * program;

void * convert_init(bool verbose);
int convert(void * h_void, bool url, bool quiet,
	    const char * input, const char * output,
	    const char * format = 0, const char * options = 0);
void convert_cleanup(void * h_void);

#endif